From 21d26ed53bb14bad5a057e51ec2cbbcc57217110 Mon Sep 17 00:00:00 2001 From: HimmelKreis4865 <51092444+HimmelKreis4865@users.noreply.github.com> Date: Sun, 31 Mar 2024 21:06:44 +0200 Subject: [PATCH] Initial commit --- .gitattributes | 2 + .gitignore | 2 + .php-cs-fixer.cache | 1 + .php-cs-fixer.php | 93 + LICENSE | 201 + composer.json | 7 + composer.lock | 2897 + plugin.yml | 11 + resources/messages.yml | 15 + src/JavaGen/EventListener.php | 85 + src/JavaGen/JavaGen.php | 117 + src/JavaGen/commands/LocateCommand.php | 120 + src/JavaGen/data/DataRegistry.php | 16 + src/JavaGen/data/MessageKey.php | 24 + src/JavaGen/data/Messages.php | 30 + .../data/lootTable/abandoned_mineshaft.json | 284 + src/JavaGen/data/lootTable/ancient_city.json | 416 + .../data/lootTable/ancient_city_ice_box.json | 99 + .../data/lootTable/bastion_bridge.json | 312 + .../data/lootTable/bastion_hoglin_stable.json | 347 + src/JavaGen/data/lootTable/bastion_other.json | 505 + .../data/lootTable/bastion_treasure.json | 335 + .../data/lootTable/buried_treasure.json | 177 + .../data/lootTable/desert_pyramid.json | 249 + .../data/lootTable/dispenser_trap.json | 26 + .../data/lootTable/end_city_treasure.json | 326 + src/JavaGen/data/lootTable/igloo_chest.json | 93 + src/JavaGen/data/lootTable/jungle_temple.json | 162 + src/JavaGen/data/lootTable/monster_room.json | 119 + src/JavaGen/data/lootTable/nether_bridge.json | 131 + .../data/lootTable/pillager_outpost.json | 211 + src/JavaGen/data/lootTable/ruined_portal.json | 254 + src/JavaGen/data/lootTable/shipwreck.json | 101 + .../data/lootTable/shipwrecksupply.json | 254 + .../data/lootTable/shipwrecktreasure.json | 138 + .../data/lootTable/simple_dungeon.json | 263 + .../data/lootTable/spawn_bonus_chest.json | 498 + .../data/lootTable/stronghold_corridor.json | 201 + .../data/lootTable/stronghold_crossing.json | 131 + .../data/lootTable/stronghold_library.json | 72 + .../data/lootTable/underwater_ruin_big.json | 110 + .../data/lootTable/underwater_ruin_small.json | 91 + .../lootTable/village/village_armorer.json | 48 + .../lootTable/village/village_butcher.json | 86 + .../village/village_cartographer.json | 77 + .../village/village_desert_house.json | 99 + .../lootTable/village/village_fletcher.json | 87 + .../data/lootTable/village/village_mason.json | 72 + .../village/village_plains_house.json | 123 + .../village/village_savanna_house.json | 129 + .../lootTable/village/village_shepherd.json | 125 + .../village/village_snowy_house.json | 113 + .../village/village_taiga_house.json | 153 + .../lootTable/village/village_tannery.json | 76 + .../lootTable/village/village_temple.json | 97 + .../lootTable/village/village_toolsmith.json | 103 + .../village/village_weaponsmith.json | 161 + .../data/lootTable/village_blacksmith.json | 160 + .../lootTable/village_two_room_house.json | 93 + .../data/lootTable/woodland_mansion.json | 273 + src/JavaGen/data/mappings.json | 300925 +++++++++++++++ src/JavaGen/database/ChunkDataStorage.php | 80 + src/JavaGen/event/StructureGenerateEvent.php | 20 + src/JavaGen/generator/BaseJavaGenerator.php | 181 + src/JavaGen/generator/EndGenerator.php | 21 + src/JavaGen/generator/NetherGenerator.php | 21 + src/JavaGen/generator/OverworldGenerator.php | 21 + src/JavaGen/helper/Dimension.php | 28 + src/JavaGen/helper/GeneratorNames.php | 40 + src/JavaGen/helper/LegacyItemMetaIdMap.php | 29 + .../helper/biome/BiomeIdentifierRegistry.php | 106 + src/JavaGen/helper/biome/BiomePalette.php | 21 + .../helper/block/BlockIdentifierRegistry.php | 80 + src/JavaGen/helper/block/BlockPalette.php | 37 + .../helper/block/JavaToBedrockBlockData.php | 70 + src/JavaGen/helper/number/ExactNumber.php | 14 + src/JavaGen/helper/number/Number.php | 27 + src/JavaGen/helper/number/RandomNumber.php | 21 + src/JavaGen/loot/LootPool.php | 61 + src/JavaGen/loot/LootTable.php | 55 + src/JavaGen/loot/LootTableIds.php | 52 + src/JavaGen/loot/LootTableRegistry.php | 111 + src/JavaGen/loot/item/EnchantItemFunction.php | 53 + src/JavaGen/loot/item/LootItem.php | 49 + src/JavaGen/loot/item/LootItemFunction.php | 14 + src/JavaGen/loot/item/SetCountFunction.php | 24 + src/JavaGen/loot/item/SetDamageFunction.php | 30 + src/JavaGen/loot/item/SetDataFunction.php | 29 + .../loot/item/SpecificEnchantFunction.php | 35 + src/JavaGen/stream/JavaRequests.php | 51 + src/JavaGen/structure/Structure.php | 37 + src/JavaGen/structure/StructureCategory.php | 45 + src/JavaGen/structure/StructureManager.php | 70 + src/JavaGen/structure/StructureType.php | 91 + src/JavaGen/tile/JavaTile.php | 39 + src/JavaGen/tile/JavaTileMappings.php | 83 + text | 30 + 97 files changed, 314302 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .php-cs-fixer.cache create mode 100644 .php-cs-fixer.php create mode 100644 LICENSE create mode 100644 composer.json create mode 100644 composer.lock create mode 100644 plugin.yml create mode 100644 resources/messages.yml create mode 100644 src/JavaGen/EventListener.php create mode 100644 src/JavaGen/JavaGen.php create mode 100644 src/JavaGen/commands/LocateCommand.php create mode 100644 src/JavaGen/data/DataRegistry.php create mode 100644 src/JavaGen/data/MessageKey.php create mode 100644 src/JavaGen/data/Messages.php create mode 100644 src/JavaGen/data/lootTable/abandoned_mineshaft.json create mode 100644 src/JavaGen/data/lootTable/ancient_city.json create mode 100644 src/JavaGen/data/lootTable/ancient_city_ice_box.json create mode 100644 src/JavaGen/data/lootTable/bastion_bridge.json create mode 100644 src/JavaGen/data/lootTable/bastion_hoglin_stable.json create mode 100644 src/JavaGen/data/lootTable/bastion_other.json create mode 100644 src/JavaGen/data/lootTable/bastion_treasure.json create mode 100644 src/JavaGen/data/lootTable/buried_treasure.json create mode 100644 src/JavaGen/data/lootTable/desert_pyramid.json create mode 100644 src/JavaGen/data/lootTable/dispenser_trap.json create mode 100644 src/JavaGen/data/lootTable/end_city_treasure.json create mode 100644 src/JavaGen/data/lootTable/igloo_chest.json create mode 100644 src/JavaGen/data/lootTable/jungle_temple.json create mode 100644 src/JavaGen/data/lootTable/monster_room.json create mode 100644 src/JavaGen/data/lootTable/nether_bridge.json create mode 100644 src/JavaGen/data/lootTable/pillager_outpost.json create mode 100644 src/JavaGen/data/lootTable/ruined_portal.json create mode 100644 src/JavaGen/data/lootTable/shipwreck.json create mode 100644 src/JavaGen/data/lootTable/shipwrecksupply.json create mode 100644 src/JavaGen/data/lootTable/shipwrecktreasure.json create mode 100644 src/JavaGen/data/lootTable/simple_dungeon.json create mode 100644 src/JavaGen/data/lootTable/spawn_bonus_chest.json create mode 100644 src/JavaGen/data/lootTable/stronghold_corridor.json create mode 100644 src/JavaGen/data/lootTable/stronghold_crossing.json create mode 100644 src/JavaGen/data/lootTable/stronghold_library.json create mode 100644 src/JavaGen/data/lootTable/underwater_ruin_big.json create mode 100644 src/JavaGen/data/lootTable/underwater_ruin_small.json create mode 100644 src/JavaGen/data/lootTable/village/village_armorer.json create mode 100644 src/JavaGen/data/lootTable/village/village_butcher.json create mode 100644 src/JavaGen/data/lootTable/village/village_cartographer.json create mode 100644 src/JavaGen/data/lootTable/village/village_desert_house.json create mode 100644 src/JavaGen/data/lootTable/village/village_fletcher.json create mode 100644 src/JavaGen/data/lootTable/village/village_mason.json create mode 100644 src/JavaGen/data/lootTable/village/village_plains_house.json create mode 100644 src/JavaGen/data/lootTable/village/village_savanna_house.json create mode 100644 src/JavaGen/data/lootTable/village/village_shepherd.json create mode 100644 src/JavaGen/data/lootTable/village/village_snowy_house.json create mode 100644 src/JavaGen/data/lootTable/village/village_taiga_house.json create mode 100644 src/JavaGen/data/lootTable/village/village_tannery.json create mode 100644 src/JavaGen/data/lootTable/village/village_temple.json create mode 100644 src/JavaGen/data/lootTable/village/village_toolsmith.json create mode 100644 src/JavaGen/data/lootTable/village/village_weaponsmith.json create mode 100644 src/JavaGen/data/lootTable/village_blacksmith.json create mode 100644 src/JavaGen/data/lootTable/village_two_room_house.json create mode 100644 src/JavaGen/data/lootTable/woodland_mansion.json create mode 100644 src/JavaGen/data/mappings.json create mode 100644 src/JavaGen/database/ChunkDataStorage.php create mode 100644 src/JavaGen/event/StructureGenerateEvent.php create mode 100644 src/JavaGen/generator/BaseJavaGenerator.php create mode 100644 src/JavaGen/generator/EndGenerator.php create mode 100644 src/JavaGen/generator/NetherGenerator.php create mode 100644 src/JavaGen/generator/OverworldGenerator.php create mode 100644 src/JavaGen/helper/Dimension.php create mode 100644 src/JavaGen/helper/GeneratorNames.php create mode 100644 src/JavaGen/helper/LegacyItemMetaIdMap.php create mode 100644 src/JavaGen/helper/biome/BiomeIdentifierRegistry.php create mode 100644 src/JavaGen/helper/biome/BiomePalette.php create mode 100644 src/JavaGen/helper/block/BlockIdentifierRegistry.php create mode 100644 src/JavaGen/helper/block/BlockPalette.php create mode 100644 src/JavaGen/helper/block/JavaToBedrockBlockData.php create mode 100644 src/JavaGen/helper/number/ExactNumber.php create mode 100644 src/JavaGen/helper/number/Number.php create mode 100644 src/JavaGen/helper/number/RandomNumber.php create mode 100644 src/JavaGen/loot/LootPool.php create mode 100644 src/JavaGen/loot/LootTable.php create mode 100644 src/JavaGen/loot/LootTableIds.php create mode 100644 src/JavaGen/loot/LootTableRegistry.php create mode 100644 src/JavaGen/loot/item/EnchantItemFunction.php create mode 100644 src/JavaGen/loot/item/LootItem.php create mode 100644 src/JavaGen/loot/item/LootItemFunction.php create mode 100644 src/JavaGen/loot/item/SetCountFunction.php create mode 100644 src/JavaGen/loot/item/SetDamageFunction.php create mode 100644 src/JavaGen/loot/item/SetDataFunction.php create mode 100644 src/JavaGen/loot/item/SpecificEnchantFunction.php create mode 100644 src/JavaGen/stream/JavaRequests.php create mode 100644 src/JavaGen/structure/Structure.php create mode 100644 src/JavaGen/structure/StructureCategory.php create mode 100644 src/JavaGen/structure/StructureManager.php create mode 100644 src/JavaGen/structure/StructureType.php create mode 100644 src/JavaGen/tile/JavaTile.php create mode 100644 src/JavaGen/tile/JavaTileMappings.php create mode 100644 text diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e0caea8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea/ +vendor/ \ No newline at end of file diff --git a/.php-cs-fixer.cache b/.php-cs-fixer.cache new file mode 100644 index 0000000..fa2c973 --- /dev/null +++ b/.php-cs-fixer.cache @@ -0,0 +1 @@ +{"php":"8.2.8","version":"3.52.1:v3.52.1#6e77207f0d851862ceeb6da63e6e22c01b1587bc","indent":"\t","lineEnding":"\n","rules":{"align_multiline_comment":{"comment_type":"phpdocs_only"},"array_indentation":true,"array_syntax":{"syntax":"short"},"binary_operator_spaces":{"default":"single_space"},"blank_line_after_namespace":true,"blank_line_after_opening_tag":true,"blank_line_before_statement":{"statements":["declare"]},"cast_spaces":{"space":"single"},"concat_space":{"spacing":"one"},"declare_strict_types":true,"elseif":true,"fully_qualified_strict_types":true,"global_namespace_import":{"import_constants":true,"import_functions":true,"import_classes":null},"indentation_type":true,"native_constant_invocation":{"scope":"namespaced"},"void_return":true,"native_function_invocation":{"scope":"namespaced","include":["@all"]},"new_with_braces":{"named_class":true,"anonymous_class":false},"no_closing_tag":true,"no_empty_phpdoc":true,"no_extra_blank_lines":true,"no_superfluous_phpdoc_tags":{"allow_mixed":true},"no_trailing_whitespace":true,"no_trailing_whitespace_in_comment":true,"no_whitespace_in_blank_line":true,"no_unused_imports":true,"ordered_imports":{"imports_order":["class","function","const"],"sort_algorithm":"alpha"},"phpdoc_align":{"align":"vertical","tags":["param"]},"phpdoc_line_span":{"property":"single","method":null,"const":null},"phpdoc_trim":true,"phpdoc_trim_consecutive_blank_line_separation":true,"return_type_declaration":{"space_before":"none"},"single_import_per_statement":true,"strict_param":true,"unary_operator_spaces":true},"hashes":{"src\\JavaGen\\data\\DataRegistry.php":"8d693a99f2d397e1d08e5571cd2b5c5c","src\\JavaGen\\database\\ChunkDataStorage.php":"53e1e06e5b54ff9f663edb9a377b8f75","src\\JavaGen\\event\\StructureGenerateEvent.php":"f543ad314d984935c6eacbffe90a2888","src\\JavaGen\\EventListener.php":"d18a7db565a00e86529b1b43437095fb","src\\JavaGen\\generator\\EndGenerator.php":"5fd49aae57ff3aa9942a653582dc162b","src\\JavaGen\\generator\\GeneratorNames.php":"eb1344cc0ffd9cfbbd9a7e403badd6ab","src\\JavaGen\\generator\\NetherGenerator.php":"2e9bca1cb2a805608afe1cf9d5f6ad65","src\\JavaGen\\generator\\OverworldGenerator.php":"135081694606e6b07a4a54ec9b6ad0bb","src\\JavaGen\\helper\\biome\\BiomePalette.php":"11e9c4d41a07a3a6c48ebdca6ab76af7","src\\JavaGen\\helper\\block\\BlockIdentifierRegistry.php":"8d43724c3a532024891335d4c6c27645","src\\JavaGen\\helper\\ChunkStorage.php":"e3046e622cb800d26595c87abf0a920c","src\\JavaGen\\helper\\Dimension.php":"357d282fef9c22f737ef931d3bf8c6a0","src\\JavaGen\\helper\\LegacyItemMetaIdMap.php":"4e3ab00c32b6bbee9548b1264738c1fc","src\\JavaGen\\helper\\number\\ExactNumber.php":"b49544ffc5bfa5ccd057c250c29c6e55","src\\JavaGen\\helper\\number\\Number.php":"80fb5a5fbf6f7e6e8720156c29d02e5d","src\\JavaGen\\helper\\number\\RandomNumber.php":"bdb014e5c54e7e30a7f0d00fbea6d5c3","src\\JavaGen\\loot\\item\\EnchantItemFunction.php":"1644fb04b3c9ef967a2b7051ac98a011","src\\JavaGen\\loot\\item\\LootItem.php":"ebffbec1e3465ba08d57a4673f41a77e","src\\JavaGen\\loot\\item\\LootItemFunction.php":"419ae01663bdae30c563bcfdecb204a0","src\\JavaGen\\loot\\item\\SetCountFunction.php":"a24d2eab359a91f914cec536b638d011","src\\JavaGen\\loot\\item\\SetDamageFunction.php":"82512243a05d2f0ad76068bf708539fb","src\\JavaGen\\loot\\item\\SetDataFunction.php":"07e7525f47f031b8ccc4b2d48cc48370","src\\JavaGen\\loot\\item\\SpecificEnchantFunction.php":"919e4243141991e833bfea5164a59d79","src\\JavaGen\\loot\\LootPool.php":"5a2382b29f0436549634b091b35ca34f","src\\JavaGen\\loot\\LootTable.php":"6a246c9082bfae8238eed0829f8ce71b","src\\JavaGen\\loot\\LootTableIds.php":"30d71fed10ce68a381c481901339451e","src\\JavaGen\\loot\\LootTableRegistry.php":"5aebb2d9e41458d5ef8c405d194b3df2","src\\JavaGen\\nbt\\JavaCompoundTag.php":"5f5e67f425e61815078f470810620d24","src\\JavaGen\\nbt\\JavaNBT.php":"3c044edbcdbbb06e493ebf5b1acafb0f","src\\JavaGen\\nbt\\JavaNbtSerializer.php":"2303f4773a819c6963f8165becbfd363","src\\JavaGen\\structure\\Structure.php":"a36ce6bdefae5f4a3e3e15f1d79dc1b2","src\\JavaGen\\structure\\StructureCategory.php":"db533be82b62c605925d4271ebd56895","src\\JavaGen\\structure\\StructureManager.php":"396d87c71cc35e5d4a6ec249ea447a4d","src\\JavaGen\\structure\\StructureType.php":"84541dbc48d8c9143ab7b8bedb1eb956","src\\JavaGen\\tile\\JavaTile.php":"7122e48123c8969ce7abbb655526b196","src\\JavaGen\\stream\\ChunkRequestParser.php":"f0dc56b59568e8f9be0fecd715d3a3b0","src\\JavaGen\\commands\\LocateCommand.php":"24b8bb6af7d919c626cac061c12b3dac","src\\JavaGen\\data\\MessageKey.php":"2bf2e1b98a6e2ef09025c769d008ad29","src\\JavaGen\\data\\Messages.php":"3142bc81cb1c6dfc6678f687ee9cd1f1","src\\JavaGen\\stream\\JavaRequests.php":"1b17deea2cfe23f01829cef11770d8d1","src\\JavaGen\\generator\\BaseJavaGenerator.php":"68df23ee297706adbf2a1aef3bf6fadc","src\\JavaGen\\helper\\biome\\BiomeIdentifierRegistry.php":"fa980fcfe70a58219b11f7376cd705fc","src\\JavaGen\\helper\\block\\BlockPalette.php":"174bcdf991a0d9d9b03a78e89b04386b","src\\JavaGen\\helper\\block\\JavaToBedrockBlockData.php":"e935d81107faf04718063edf6636fc30","src\\JavaGen\\JavaGen.php":"5718fc7a346906d2c58586e049ed3f15","src\\JavaGen\\tile\\JavaTileMappings.php":"bdc78a8199d976f56b37b9a27b471480","src\\JavaGen\\helper\\GeneratorNames.php":"44af6a86b91da92851e49c4bd0dd6860"}} \ No newline at end of file diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php new file mode 100644 index 0000000..403bf45 --- /dev/null +++ b/.php-cs-fixer.php @@ -0,0 +1,93 @@ +in(__DIR__ . '/src'); + +return (new PhpCsFixer\Config) + ->setRiskyAllowed(true) + ->setRules([ + 'align_multiline_comment' => [ + 'comment_type' => 'phpdocs_only' + ], + 'array_indentation' => true, + 'array_syntax' => [ + 'syntax' => 'short' + ], + 'binary_operator_spaces' => [ + 'default' => 'single_space' + ], + 'blank_line_after_namespace' => true, + 'blank_line_after_opening_tag' => true, + 'blank_line_before_statement' => [ + 'statements' => [ + 'declare' + ] + ], + 'cast_spaces' => [ + 'space' => 'single' + ], + 'concat_space' => [ + 'spacing' => 'one' + ], + 'declare_strict_types' => true, + 'elseif' => true, + 'fully_qualified_strict_types' => true, + 'global_namespace_import' => [ + 'import_constants' => true, + 'import_functions' => true, + 'import_classes' => null, + ], + 'indentation_type' => true, + 'native_constant_invocation' => [ + 'scope' => 'namespaced' + ], + 'void_return' => true, + 'native_function_invocation' => [ + 'scope' => 'namespaced', + 'include' => ['@all'], + ], + 'new_with_braces' => [ + 'named_class' => true, + 'anonymous_class' => false, + ], + 'no_closing_tag' => true, + 'no_empty_phpdoc' => true, + 'no_extra_blank_lines' => true, + 'no_superfluous_phpdoc_tags' => [ + 'allow_mixed' => true, + ], + 'no_trailing_whitespace' => true, + 'no_trailing_whitespace_in_comment' => true, + 'no_whitespace_in_blank_line' => true, + 'no_unused_imports' => true, + 'ordered_imports' => [ + 'imports_order' => [ + 'class', + 'function', + 'const', + ], + 'sort_algorithm' => 'alpha' + ], + 'phpdoc_align' => [ + 'align' => 'vertical', + 'tags' => [ + 'param', + ] + ], + 'phpdoc_line_span' => [ + 'property' => 'single', + 'method' => null, + 'const' => null + ], + 'phpdoc_trim' => true, + 'phpdoc_trim_consecutive_blank_line_separation' => true, + 'return_type_declaration' => [ + 'space_before' => 'none' + ], + 'single_blank_line_at_eof' => false, + 'single_import_per_statement' => true, + 'strict_param' => true, + 'unary_operator_spaces' => true, + ]) + ->setFinder($finder) + ->setIndent("\t") + ->setLineEnding("\n"); diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b09cd78 --- /dev/null +++ b/LICENSE @@ -0,0 +1,201 @@ +Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f90bde5 --- /dev/null +++ b/composer.json @@ -0,0 +1,7 @@ +{ + "require": { + "friendsofphp/php-cs-fixer": "*", + "phpstan/phpstan": "*", + "pocketmine/pocketmine-mp": "^5.13" + } +} diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..35b0818 --- /dev/null +++ b/composer.lock @@ -0,0 +1,2897 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "6ddac49fe95705e467cabb407da5360c", + "packages": [ + { + "name": "adhocore/json-comment", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/adhocore/php-json-comment.git", + "reference": "651023f9fe52e9efa2198cbaf6e481d1968e2377" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/adhocore/php-json-comment/zipball/651023f9fe52e9efa2198cbaf6e481d1968e2377", + "reference": "651023f9fe52e9efa2198cbaf6e481d1968e2377", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.5 || ^7.5 || ^8.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Ahc\\Json\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jitendra Adhikari", + "email": "jiten.adhikary@gmail.com" + } + ], + "description": "Lightweight JSON comment stripper library for PHP", + "keywords": [ + "comment", + "json", + "strip-comment" + ], + "support": { + "issues": "https://github.com/adhocore/php-json-comment/issues", + "source": "https://github.com/adhocore/php-json-comment/tree/1.2.1" + }, + "funding": [ + { + "url": "https://paypal.me/ji10", + "type": "custom" + }, + { + "url": "https://github.com/adhocore", + "type": "github" + } + ], + "time": "2022-10-02T11:22:07+00:00" + }, + { + "name": "brick/math", + "version": "0.11.0", + "source": { + "type": "git", + "url": "https://github.com/brick/math.git", + "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478", + "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^9.0", + "vimeo/psalm": "5.0.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Brick\\Math\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Arbitrary-precision arithmetic library", + "keywords": [ + "Arbitrary-precision", + "BigInteger", + "BigRational", + "arithmetic", + "bigdecimal", + "bignum", + "brick", + "math" + ], + "support": { + "issues": "https://github.com/brick/math/issues", + "source": "https://github.com/brick/math/tree/0.11.0" + }, + "funding": [ + { + "url": "https://github.com/BenMorel", + "type": "github" + } + ], + "time": "2023-01-15T23:15:59+00:00" + }, + { + "name": "composer/pcre", + "version": "3.1.3", + "source": { + "type": "git", + "url": "https://github.com/composer/pcre.git", + "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/pcre/zipball/5b16e25a5355f1f3afdfc2f954a0a80aec4826a8", + "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.3", + "phpstan/phpstan-strict-rules": "^1.1", + "symfony/phpunit-bridge": "^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Pcre\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "keywords": [ + "PCRE", + "preg", + "regex", + "regular expression" + ], + "support": { + "issues": "https://github.com/composer/pcre/issues", + "source": "https://github.com/composer/pcre/tree/3.1.3" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-03-19T10:26:25+00:00" + }, + { + "name": "composer/semver", + "version": "3.4.0", + "source": { + "type": "git", + "url": "https://github.com/composer/semver.git", + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32", + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.4", + "symfony/phpunit-bridge": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Semver\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "Semver library that offers utilities, version constraint parsing and validation.", + "keywords": [ + "semantic", + "semver", + "validation", + "versioning" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/semver/issues", + "source": "https://github.com/composer/semver/tree/3.4.0" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2023-08-31T09:50:34+00:00" + }, + { + "name": "composer/xdebug-handler", + "version": "3.0.4", + "source": { + "type": "git", + "url": "https://github.com/composer/xdebug-handler.git", + "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/4f988f8fdf580d53bdb2d1278fe93d1ed5462255", + "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255", + "shasum": "" + }, + "require": { + "composer/pcre": "^1 || ^2 || ^3", + "php": "^7.2.5 || ^8.0", + "psr/log": "^1 || ^2 || ^3" + }, + "require-dev": { + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Composer\\XdebugHandler\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "John Stevenson", + "email": "john-stevenson@blueyonder.co.uk" + } + ], + "description": "Restarts a process without Xdebug.", + "keywords": [ + "Xdebug", + "performance" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/xdebug-handler/issues", + "source": "https://github.com/composer/xdebug-handler/tree/3.0.4" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-03-26T18:29:49+00:00" + }, + { + "name": "friendsofphp/php-cs-fixer", + "version": "v3.52.1", + "source": { + "type": "git", + "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git", + "reference": "6e77207f0d851862ceeb6da63e6e22c01b1587bc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/6e77207f0d851862ceeb6da63e6e22c01b1587bc", + "reference": "6e77207f0d851862ceeb6da63e6e22c01b1587bc", + "shasum": "" + }, + "require": { + "composer/semver": "^3.4", + "composer/xdebug-handler": "^3.0.3", + "ext-filter": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": "^7.4 || ^8.0", + "sebastian/diff": "^4.0 || ^5.0 || ^6.0", + "symfony/console": "^5.4 || ^6.0 || ^7.0", + "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0", + "symfony/filesystem": "^5.4 || ^6.0 || ^7.0", + "symfony/finder": "^5.4 || ^6.0 || ^7.0", + "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0", + "symfony/polyfill-mbstring": "^1.28", + "symfony/polyfill-php80": "^1.28", + "symfony/polyfill-php81": "^1.28", + "symfony/process": "^5.4 || ^6.0 || ^7.0", + "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0" + }, + "require-dev": { + "facile-it/paraunit": "^1.3 || ^2.0", + "justinrainbow/json-schema": "^5.2", + "keradus/cli-executor": "^2.1", + "mikey179/vfsstream": "^1.6.11", + "php-coveralls/php-coveralls": "^2.7", + "php-cs-fixer/accessible-object": "^1.1", + "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4", + "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4", + "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2", + "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0", + "symfony/yaml": "^5.4 || ^6.0 || ^7.0" + }, + "suggest": { + "ext-dom": "For handling output formats in XML", + "ext-mbstring": "For handling non-UTF8 characters." + }, + "bin": [ + "php-cs-fixer" + ], + "type": "application", + "autoload": { + "psr-4": { + "PhpCsFixer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Dariusz RumiƄski", + "email": "dariusz.ruminski@gmail.com" + } + ], + "description": "A tool to automatically fix PHP code style", + "keywords": [ + "Static code analysis", + "fixer", + "standards", + "static analysis" + ], + "support": { + "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues", + "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.52.1" + }, + "funding": [ + { + "url": "https://github.com/keradus", + "type": "github" + } + ], + "time": "2024-03-19T21:02:43+00:00" + }, + { + "name": "phpstan/phpstan", + "version": "1.10.66", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan.git", + "reference": "94779c987e4ebd620025d9e5fdd23323903950bd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/94779c987e4ebd620025d9e5fdd23323903950bd", + "reference": "94779c987e4ebd620025d9e5fdd23323903950bd", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0" + }, + "conflict": { + "phpstan/phpstan-shim": "*" + }, + "bin": [ + "phpstan", + "phpstan.phar" + ], + "type": "library", + "autoload": { + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPStan - PHP Static Analysis Tool", + "keywords": [ + "dev", + "static analysis" + ], + "support": { + "docs": "https://phpstan.org/user-guide/getting-started", + "forum": "https://github.com/phpstan/phpstan/discussions", + "issues": "https://github.com/phpstan/phpstan/issues", + "security": "https://github.com/phpstan/phpstan/security/policy", + "source": "https://github.com/phpstan/phpstan-src" + }, + "funding": [ + { + "url": "https://github.com/ondrejmirtes", + "type": "github" + }, + { + "url": "https://github.com/phpstan", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", + "type": "tidelift" + } + ], + "time": "2024-03-28T16:17:31+00:00" + }, + { + "name": "pocketmine/bedrock-block-upgrade-schema", + "version": "3.6.0", + "source": { + "type": "git", + "url": "https://github.com/pmmp/BedrockBlockUpgradeSchema.git", + "reference": "1496e275db5148cb96bdaa998115e5e31a5c1e4d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/BedrockBlockUpgradeSchema/zipball/1496e275db5148cb96bdaa998115e5e31a5c1e4d", + "reference": "1496e275db5148cb96bdaa998115e5e31a5c1e4d", + "shasum": "" + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "CC0-1.0" + ], + "description": "Schemas describing how to upgrade saved block data in older Minecraft: Bedrock Edition world saves", + "support": { + "issues": "https://github.com/pmmp/BedrockBlockUpgradeSchema/issues", + "source": "https://github.com/pmmp/BedrockBlockUpgradeSchema/tree/3.6.0" + }, + "time": "2024-02-28T19:25:25+00:00" + }, + { + "name": "pocketmine/bedrock-data", + "version": "2.9.0+bedrock-1.20.70", + "source": { + "type": "git", + "url": "https://github.com/pmmp/BedrockData.git", + "reference": "10b6696b662fd80a282eff7dca6c99d321c5b9e3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/BedrockData/zipball/10b6696b662fd80a282eff7dca6c99d321c5b9e3", + "reference": "10b6696b662fd80a282eff7dca6c99d321c5b9e3", + "shasum": "" + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "CC0-1.0" + ], + "description": "Blobs of data generated from Minecraft: Bedrock Edition, used by PocketMine-MP", + "support": { + "issues": "https://github.com/pmmp/BedrockData/issues", + "source": "https://github.com/pmmp/BedrockData/tree/bedrock-1.20.70" + }, + "time": "2024-03-13T13:55:05+00:00" + }, + { + "name": "pocketmine/bedrock-item-upgrade-schema", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://github.com/pmmp/BedrockItemUpgradeSchema.git", + "reference": "4c4dc3bbceb944c5de429b6e752ab7a15652078c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/BedrockItemUpgradeSchema/zipball/4c4dc3bbceb944c5de429b6e752ab7a15652078c", + "reference": "4c4dc3bbceb944c5de429b6e752ab7a15652078c", + "shasum": "" + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "CC0-1.0" + ], + "description": "JSON schemas for upgrading items found in older Minecraft: Bedrock world saves", + "support": { + "issues": "https://github.com/pmmp/BedrockItemUpgradeSchema/issues", + "source": "https://github.com/pmmp/BedrockItemUpgradeSchema/tree/1.8.0" + }, + "time": "2024-02-28T19:25:53+00:00" + }, + { + "name": "pocketmine/bedrock-protocol", + "version": "29.0.0+bedrock-1.20.70", + "source": { + "type": "git", + "url": "https://github.com/pmmp/BedrockProtocol.git", + "reference": "8d63f39bb2cded3d3e578fd3cf7bc769b9674857" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/BedrockProtocol/zipball/8d63f39bb2cded3d3e578fd3cf7bc769b9674857", + "reference": "8d63f39bb2cded3d3e578fd3cf7bc769b9674857", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "^8.1", + "pocketmine/binaryutils": "^0.2.0", + "pocketmine/color": "^0.2.0 || ^0.3.0", + "pocketmine/math": "^0.3.0 || ^0.4.0 || ^1.0.0", + "pocketmine/nbt": "^1.0.0", + "ramsey/uuid": "^4.1" + }, + "require-dev": { + "phpstan/phpstan": "1.10.59", + "phpstan/phpstan-phpunit": "^1.0.0", + "phpstan/phpstan-strict-rules": "^1.0.0", + "phpunit/phpunit": "^9.5 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "pocketmine\\network\\mcpe\\protocol\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0" + ], + "description": "An implementation of the Minecraft: Bedrock Edition protocol in PHP", + "support": { + "issues": "https://github.com/pmmp/BedrockProtocol/issues", + "source": "https://github.com/pmmp/BedrockProtocol/tree/29.0.0+bedrock-1.20.70" + }, + "time": "2024-03-13T14:35:54+00:00" + }, + { + "name": "pocketmine/binaryutils", + "version": "0.2.6", + "source": { + "type": "git", + "url": "https://github.com/pmmp/BinaryUtils.git", + "reference": "ccfc1899b859d45814ea3592e20ebec4cb731c84" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/BinaryUtils/zipball/ccfc1899b859d45814ea3592e20ebec4cb731c84", + "reference": "ccfc1899b859d45814ea3592e20ebec4cb731c84", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "php-64bit": "*" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "~1.10.3", + "phpstan/phpstan-phpunit": "^1.0", + "phpstan/phpstan-strict-rules": "^1.0.0", + "phpunit/phpunit": "^9.5 || ^10.0 || ^11.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "pocketmine\\utils\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0" + ], + "description": "Classes and methods for conveniently handling binary data", + "support": { + "issues": "https://github.com/pmmp/BinaryUtils/issues", + "source": "https://github.com/pmmp/BinaryUtils/tree/0.2.6" + }, + "time": "2024-03-04T15:04:17+00:00" + }, + { + "name": "pocketmine/callback-validator", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/pmmp/CallbackValidator.git", + "reference": "64787469766bcaa7e5885242e85c23c25e8c55a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/CallbackValidator/zipball/64787469766bcaa7e5885242e85c23c25e8c55a2", + "reference": "64787469766bcaa7e5885242e85c23c25e8c55a2", + "shasum": "" + }, + "require": { + "ext-reflection": "*", + "php": "^7.1 || ^8.0" + }, + "replace": { + "daverandom/callback-validator": "*" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "0.12.59", + "phpstan/phpstan-strict-rules": "^0.12.4", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "DaveRandom\\CallbackValidator\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Wright", + "email": "cw@daverandom.com" + } + ], + "description": "Fork of daverandom/callback-validator - Tools for validating callback signatures", + "support": { + "issues": "https://github.com/pmmp/CallbackValidator/issues", + "source": "https://github.com/pmmp/CallbackValidator/tree/1.0.3" + }, + "time": "2020-12-11T01:45:37+00:00" + }, + { + "name": "pocketmine/color", + "version": "0.3.1", + "source": { + "type": "git", + "url": "https://github.com/pmmp/Color.git", + "reference": "a0421f1e9e0b0c619300fb92d593283378f6a5e1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/Color/zipball/a0421f1e9e0b0c619300fb92d593283378f6a5e1", + "reference": "a0421f1e9e0b0c619300fb92d593283378f6a5e1", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "phpstan/phpstan": "1.10.3", + "phpstan/phpstan-strict-rules": "^1.2.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "pocketmine\\color\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0" + ], + "description": "Color handling library used by PocketMine-MP and related projects", + "support": { + "issues": "https://github.com/pmmp/Color/issues", + "source": "https://github.com/pmmp/Color/tree/0.3.1" + }, + "time": "2023-04-10T11:38:05+00:00" + }, + { + "name": "pocketmine/errorhandler", + "version": "0.6.0", + "source": { + "type": "git", + "url": "https://github.com/pmmp/ErrorHandler.git", + "reference": "dae214a04348b911e8219ebf125ff1c5589cc878" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/ErrorHandler/zipball/dae214a04348b911e8219ebf125ff1c5589cc878", + "reference": "dae214a04348b911e8219ebf125ff1c5589cc878", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "phpstan/phpstan": "0.12.99", + "phpstan/phpstan-strict-rules": "^0.12.2", + "phpunit/phpunit": "^9.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "pocketmine\\errorhandler\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0" + ], + "description": "Utilities to handle nasty PHP E_* errors in a usable way", + "support": { + "issues": "https://github.com/pmmp/ErrorHandler/issues", + "source": "https://github.com/pmmp/ErrorHandler/tree/0.6.0" + }, + "time": "2022-01-08T21:05:46+00:00" + }, + { + "name": "pocketmine/locale-data", + "version": "2.19.6", + "source": { + "type": "git", + "url": "https://github.com/pmmp/Language.git", + "reference": "93e473e20e7f4515ecf45c5ef0f9155b9247a86e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/Language/zipball/93e473e20e7f4515ecf45c5ef0f9155b9247a86e", + "reference": "93e473e20e7f4515ecf45c5ef0f9155b9247a86e", + "shasum": "" + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "description": "Language resources used by PocketMine-MP", + "support": { + "issues": "https://github.com/pmmp/Language/issues", + "source": "https://github.com/pmmp/Language/tree/2.19.6" + }, + "time": "2023-08-08T16:53:23+00:00" + }, + { + "name": "pocketmine/log", + "version": "0.4.0", + "source": { + "type": "git", + "url": "https://github.com/pmmp/Log.git", + "reference": "e6c912c0f9055c81d23108ec2d179b96f404c043" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/Log/zipball/e6c912c0f9055c81d23108ec2d179b96f404c043", + "reference": "e6c912c0f9055c81d23108ec2d179b96f404c043", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "pocketmine/spl": "<0.4" + }, + "require-dev": { + "phpstan/phpstan": "0.12.88", + "phpstan/phpstan-strict-rules": "^0.12.2" + }, + "type": "library", + "autoload": { + "classmap": [ + "./src" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0" + ], + "description": "Logging components used by PocketMine-MP and related projects", + "support": { + "issues": "https://github.com/pmmp/Log/issues", + "source": "https://github.com/pmmp/Log/tree/0.4.0" + }, + "time": "2021-06-18T19:08:09+00:00" + }, + { + "name": "pocketmine/math", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/pmmp/Math.git", + "reference": "dc132d93595b32e9f210d78b3c8d43c662a5edbf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/Math/zipball/dc132d93595b32e9f210d78b3c8d43c662a5edbf", + "reference": "dc132d93595b32e9f210d78b3c8d43c662a5edbf", + "shasum": "" + }, + "require": { + "php": "^8.0", + "php-64bit": "*" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "~1.10.3", + "phpstan/phpstan-strict-rules": "^1.0", + "phpunit/phpunit": "^8.5 || ^9.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "pocketmine\\math\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0" + ], + "description": "PHP library containing math related code used in PocketMine-MP", + "support": { + "issues": "https://github.com/pmmp/Math/issues", + "source": "https://github.com/pmmp/Math/tree/1.0.0" + }, + "time": "2023-08-03T12:56:33+00:00" + }, + { + "name": "pocketmine/nbt", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/pmmp/NBT.git", + "reference": "20540271cb59e04672cb163dca73366f207974f1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/NBT/zipball/20540271cb59e04672cb163dca73366f207974f1", + "reference": "20540271cb59e04672cb163dca73366f207974f1", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "php-64bit": "*", + "pocketmine/binaryutils": "^0.2.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "1.10.25", + "phpstan/phpstan-strict-rules": "^1.0", + "phpunit/phpunit": "^9.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "pocketmine\\nbt\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0" + ], + "description": "PHP library for working with Named Binary Tags", + "support": { + "issues": "https://github.com/pmmp/NBT/issues", + "source": "https://github.com/pmmp/NBT/tree/1.0.0" + }, + "time": "2023-07-14T13:01:49+00:00" + }, + { + "name": "pocketmine/netresearch-jsonmapper", + "version": "v4.4.999", + "source": { + "type": "git", + "url": "https://github.com/pmmp/netresearch-jsonmapper.git", + "reference": "9a6610033d56e358e86a3e4fd5f87063c7318833" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/netresearch-jsonmapper/zipball/9a6610033d56e358e86a3e4fd5f87063c7318833", + "reference": "9a6610033d56e358e86a3e4fd5f87063c7318833", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-pcre": "*", + "ext-reflection": "*", + "ext-spl": "*", + "php": ">=7.1" + }, + "replace": { + "netresearch/jsonmapper": "~4.2.0" + }, + "require-dev": { + "phpunit/phpunit": "~7.5 || ~8.0 || ~9.0 || ~10.0", + "squizlabs/php_codesniffer": "~3.5" + }, + "type": "library", + "autoload": { + "psr-0": { + "JsonMapper": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "OSL-3.0" + ], + "authors": [ + { + "name": "Christian Weiske", + "email": "cweiske@cweiske.de", + "homepage": "http://github.com/cweiske/jsonmapper/", + "role": "Developer" + } + ], + "description": "Fork of netresearch/jsonmapper with security fixes needed by pocketmine/pocketmine-mp", + "support": { + "email": "cweiske@cweiske.de", + "issues": "https://github.com/cweiske/jsonmapper/issues", + "source": "https://github.com/pmmp/netresearch-jsonmapper/tree/v4.4.999" + }, + "time": "2024-02-23T13:17:01+00:00" + }, + { + "name": "pocketmine/pocketmine-mp", + "version": "5.13.0", + "source": { + "type": "git", + "url": "https://github.com/pmmp/PocketMine-MP.git", + "reference": "f193a990b0bae8892637cb7fb2bdf862c8a1a759" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/PocketMine-MP/zipball/f193a990b0bae8892637cb7fb2bdf862c8a1a759", + "reference": "f193a990b0bae8892637cb7fb2bdf862c8a1a759", + "shasum": "" + }, + "require": { + "adhocore/json-comment": "~1.2.0", + "composer-runtime-api": "^2.0", + "ext-chunkutils2": "^0.3.1", + "ext-crypto": "^0.3.1", + "ext-ctype": "*", + "ext-curl": "*", + "ext-date": "*", + "ext-gmp": "*", + "ext-hash": "*", + "ext-igbinary": "^3.0.1", + "ext-json": "*", + "ext-leveldb": "^0.2.1 || ^0.3.0", + "ext-mbstring": "*", + "ext-morton": "^0.1.0", + "ext-openssl": "*", + "ext-pcre": "*", + "ext-phar": "*", + "ext-pmmpthread": "^6.0.7", + "ext-reflection": "*", + "ext-simplexml": "*", + "ext-sockets": "*", + "ext-spl": "*", + "ext-yaml": ">=2.0.0", + "ext-zip": "*", + "ext-zlib": ">=1.2.11", + "php": "^8.1", + "php-64bit": "*", + "pocketmine/bedrock-block-upgrade-schema": "~3.6.0+bedrock-1.20.70", + "pocketmine/bedrock-data": "~2.9.0+bedrock-1.20.70", + "pocketmine/bedrock-item-upgrade-schema": "~1.8.0+bedrock-1.20.70", + "pocketmine/bedrock-protocol": "~29.0.0+bedrock-1.20.70", + "pocketmine/binaryutils": "^0.2.1", + "pocketmine/callback-validator": "^1.0.2", + "pocketmine/color": "^0.3.0", + "pocketmine/errorhandler": "^0.6.0", + "pocketmine/locale-data": "~2.19.0", + "pocketmine/log": "^0.4.0", + "pocketmine/math": "~1.0.0", + "pocketmine/nbt": "~1.0.0", + "pocketmine/netresearch-jsonmapper": "~v4.4.999", + "pocketmine/raklib": "^0.15.0", + "pocketmine/raklib-ipc": "^0.2.0", + "pocketmine/snooze": "^0.5.0", + "ramsey/uuid": "~4.7.0", + "symfony/filesystem": "~6.4.0" + }, + "require-dev": { + "phpstan/phpstan": "1.10.60", + "phpstan/phpstan-phpunit": "^1.1.0", + "phpstan/phpstan-strict-rules": "^1.2.0", + "phpunit/phpunit": "~10.3.0 || ~10.2.0 || ~10.1.0" + }, + "type": "project", + "autoload": { + "files": [ + "src/CoreConstants.php" + ], + "psr-4": { + "pocketmine\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0" + ], + "description": "A server software for Minecraft: Bedrock Edition written in PHP", + "homepage": "https://pmmp.io", + "support": { + "issues": "https://github.com/pmmp/PocketMine-MP/issues", + "source": "https://github.com/pmmp/PocketMine-MP/tree/5.13.0" + }, + "funding": [ + { + "url": "https://github.com/pmmp/PocketMine-MP#donate", + "type": "custom" + }, + { + "url": "https://www.patreon.com/pocketminemp", + "type": "patreon" + } + ], + "time": "2024-03-13T14:59:21+00:00" + }, + { + "name": "pocketmine/raklib", + "version": "0.15.1", + "source": { + "type": "git", + "url": "https://github.com/pmmp/RakLib.git", + "reference": "79b7b4d1d7516dc6e322514453645ad9452b20ca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/RakLib/zipball/79b7b4d1d7516dc6e322514453645ad9452b20ca", + "reference": "79b7b4d1d7516dc6e322514453645ad9452b20ca", + "shasum": "" + }, + "require": { + "ext-sockets": "*", + "php": "^8.0", + "php-64bit": "*", + "php-ipv6": "*", + "pocketmine/binaryutils": "^0.2.0", + "pocketmine/log": "^0.3.0 || ^0.4.0" + }, + "require-dev": { + "phpstan/phpstan": "1.9.17", + "phpstan/phpstan-strict-rules": "^1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "raklib\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-3.0" + ], + "description": "A RakNet server implementation written in PHP", + "support": { + "issues": "https://github.com/pmmp/RakLib/issues", + "source": "https://github.com/pmmp/RakLib/tree/0.15.1" + }, + "time": "2023-03-07T15:10:34+00:00" + }, + { + "name": "pocketmine/raklib-ipc", + "version": "0.2.0", + "source": { + "type": "git", + "url": "https://github.com/pmmp/RakLibIpc.git", + "reference": "26ed56fa9db06e4ca6e8920c0ede2e01e219bb9c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/RakLibIpc/zipball/26ed56fa9db06e4ca6e8920c0ede2e01e219bb9c", + "reference": "26ed56fa9db06e4ca6e8920c0ede2e01e219bb9c", + "shasum": "" + }, + "require": { + "php": "^8.0", + "php-64bit": "*", + "pocketmine/binaryutils": "^0.2.0", + "pocketmine/raklib": "^0.15.0" + }, + "require-dev": { + "phpstan/phpstan": "1.9.17", + "phpstan/phpstan-strict-rules": "^1.0.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "raklib\\server\\ipc\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-3.0" + ], + "description": "Channel-based protocols for inter-thread/inter-process communication with RakLib", + "support": { + "issues": "https://github.com/pmmp/RakLibIpc/issues", + "source": "https://github.com/pmmp/RakLibIpc/tree/0.2.0" + }, + "time": "2023-02-13T13:40:40+00:00" + }, + { + "name": "pocketmine/snooze", + "version": "0.5.0", + "source": { + "type": "git", + "url": "https://github.com/pmmp/Snooze.git", + "reference": "a86d9ee60ce44755d166d3c7ba4b8b8be8360915" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pmmp/Snooze/zipball/a86d9ee60ce44755d166d3c7ba4b8b8be8360915", + "reference": "a86d9ee60ce44755d166d3c7ba4b8b8be8360915", + "shasum": "" + }, + "require": { + "ext-pmmpthread": "^6.0", + "php-64bit": "^8.1" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "1.10.3", + "phpstan/phpstan-strict-rules": "^1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "pocketmine\\snooze\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-3.0" + ], + "description": "Thread notification management library for code using the pthreads extension", + "support": { + "issues": "https://github.com/pmmp/Snooze/issues", + "source": "https://github.com/pmmp/Snooze/tree/0.5.0" + }, + "time": "2023-05-22T23:43:01+00:00" + }, + { + "name": "psr/container", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "shasum": "" + }, + "require": { + "php": ">=7.4.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" + }, + "time": "2021-11-05T16:47:00+00:00" + }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Standard interfaces for event handling.", + "keywords": [ + "events", + "psr", + "psr-14" + ], + "support": { + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + }, + "time": "2019-01-08T18:20:26+00:00" + }, + { + "name": "psr/log", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", + "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/3.0.0" + }, + "time": "2021-07-14T16:46:02+00:00" + }, + { + "name": "ramsey/collection", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/ramsey/collection.git", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "captainhook/plugin-composer": "^5.3", + "ergebnis/composer-normalize": "^2.28.3", + "fakerphp/faker": "^1.21", + "hamcrest/hamcrest-php": "^2.0", + "jangregor/phpstan-prophecy": "^1.0", + "mockery/mockery": "^1.5", + "php-parallel-lint/php-console-highlighter": "^1.0", + "php-parallel-lint/php-parallel-lint": "^1.3", + "phpcsstandards/phpcsutils": "^1.0.0-rc1", + "phpspec/prophecy-phpunit": "^2.0", + "phpstan/extension-installer": "^1.2", + "phpstan/phpstan": "^1.9", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5", + "psalm/plugin-mockery": "^1.1", + "psalm/plugin-phpunit": "^0.18.4", + "ramsey/coding-standard": "^2.0.3", + "ramsey/conventional-commits": "^1.3", + "vimeo/psalm": "^5.4" + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + }, + "ramsey/conventional-commits": { + "configFile": "conventional-commits.json" + } + }, + "autoload": { + "psr-4": { + "Ramsey\\Collection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + } + ], + "description": "A PHP library for representing and manipulating collections.", + "keywords": [ + "array", + "collection", + "hash", + "map", + "queue", + "set" + ], + "support": { + "issues": "https://github.com/ramsey/collection/issues", + "source": "https://github.com/ramsey/collection/tree/2.0.0" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/collection", + "type": "tidelift" + } + ], + "time": "2022-12-31T21:50:55+00:00" + }, + { + "name": "ramsey/uuid", + "version": "4.7.5", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e", + "shasum": "" + }, + "require": { + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11", + "ext-json": "*", + "php": "^8.0", + "ramsey/collection": "^1.2 || ^2.0" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "captainhook/captainhook": "^5.10", + "captainhook/plugin-composer": "^5.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "doctrine/annotations": "^1.8", + "ergebnis/composer-normalize": "^2.15", + "mockery/mockery": "^1.3", + "paragonie/random-lib": "^2", + "php-mock/php-mock": "^2.2", + "php-mock/php-mock-mockery": "^1.3", + "php-parallel-lint/php-parallel-lint": "^1.1", + "phpbench/phpbench": "^1.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^8.5 || ^9", + "ramsey/composer-repl": "^1.4", + "slevomat/coding-standard": "^8.4", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.9" + }, + "suggest": { + "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", + "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.", + "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "extra": { + "captainhook": { + "force-install": true + } + }, + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "source": "https://github.com/ramsey/uuid/tree/4.7.5" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" + } + ], + "time": "2023-11-08T05:53:05+00:00" + }, + { + "name": "sebastian/diff", + "version": "6.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "ab83243ecc233de5655b76f577711de9f842e712" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ab83243ecc233de5655b76f577711de9f842e712", + "reference": "ab83243ecc233de5655b76f577711de9f842e712", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0", + "symfony/process": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/6.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:30:33+00:00" + }, + { + "name": "symfony/console", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "6b099f3306f7c9c2d2786ed736d0026b2903205f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/6b099f3306f7c9c2d2786ed736d0026b2903205f", + "reference": "6b099f3306f7c9c2d2786ed736d0026b2903205f", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^6.4|^7.0" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/dotenv": "<6.4", + "symfony/event-dispatcher": "<6.4", + "symfony/lock": "<6.4", + "symfony/process": "<6.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], + "support": { + "source": "https://github.com/symfony/console/tree/v7.0.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-02-22T20:27:20+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "files": [ + "function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-05-23T14:45:45+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v7.0.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e", + "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/event-dispatcher-contracts": "^2.5|^3" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/service-contracts": "<2.5" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "2.0|3.0" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/stopwatch": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-23T15:02:46+00:00" + }, + { + "name": "symfony/event-dispatcher-contracts", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", + "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/event-dispatcher": "^1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-05-23T14:45:45+00:00" + }, + { + "name": "symfony/filesystem", + "version": "v6.4.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/filesystem.git", + "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", + "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.8" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Filesystem\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides basic utilities for the filesystem", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/filesystem/tree/v6.4.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-23T14:51:35+00:00" + }, + { + "name": "symfony/finder", + "version": "v7.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56", + "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "symfony/filesystem": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/finder/tree/v7.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-10-31T17:59:56+00:00" + }, + { + "name": "symfony/options-resolver", + "version": "v7.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/options-resolver.git", + "reference": "700ff4096e346f54cb628ea650767c8130f1001f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/700ff4096e346f54cb628ea650767c8130f1001f", + "reference": "700ff4096e346f54cb628ea650767c8130f1001f", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\OptionsResolver\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an improved replacement for the array_replace PHP function", + "homepage": "https://symfony.com", + "keywords": [ + "config", + "configuration", + "options" + ], + "support": { + "source": "https://github.com/symfony/options-resolver/tree/v7.0.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-08-08T10:20:21+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4", + "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's grapheme_* functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "bc45c394692b948b4d383a08d7753968bed9a83d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d", + "reference": "bc45c394692b948b4d383a08d7753968bed9a83d", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", + "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-php81", + "version": "v1.29.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php81.git", + "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d", + "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php81\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/process", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/0e7727191c3b71ebec6d529fa0e50a01ca5679e9", + "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9", + "shasum": "" + }, + "require": { + "php": ">=8.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v7.0.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-02-22T20:27:20+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v3.4.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0", + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/container": "^1.1|^2.0" + }, + "conflict": { + "ext-psr": "<1.1|>=2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + }, + "exclude-from-classmap": [ + "/Test/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/v3.4.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-12-26T14:02:43+00:00" + }, + { + "name": "symfony/stopwatch", + "version": "v7.0.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/stopwatch.git", + "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/983900d6fddf2b0cbaacacbbad07610854bd8112", + "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/service-contracts": "^2.5|^3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Stopwatch\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides a way to profile code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/stopwatch/tree/v7.0.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-23T15:02:46+00:00" + }, + { + "name": "symfony/string", + "version": "v7.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b", + "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b", + "shasum": "" + }, + "require": { + "php": ">=8.2", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" + }, + "require-dev": { + "symfony/error-handler": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^6.4|^7.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v7.0.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-02-01T13:17:36+00:00" + } + ], + "packages-dev": [], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": [], + "platform-dev": [], + "plugin-api-version": "2.3.0" +} diff --git a/plugin.yml b/plugin.yml new file mode 100644 index 0000000..c838c80 --- /dev/null +++ b/plugin.yml @@ -0,0 +1,11 @@ +name: JavaGen +author: HimmelKreis4865 +version: 1.0.0 +api: 5.0.0 +main: JavaGen\JavaGen +load: STARTUP +permissions: + world.command: + default: op + locate.command: + default: op \ No newline at end of file diff --git a/resources/messages.yml b/resources/messages.yml new file mode 100644 index 0000000..d94af03 --- /dev/null +++ b/resources/messages.yml @@ -0,0 +1,15 @@ +--- +commands: + locate: + ingame: "You can only run this command ingame." + invalid: + category: "Cannot locate objects of type %0, possible values: structure, biome" + biome: "Biome %0 could not be found" + structure: "Structure %0 could not be found" + success: + biome: "The nearest %0 is at x=%1, y=%2, z=%3 (%4 blocks away)" + structure: "The nearest %0 is at x=%1, y=%2, z=%3 (%4 blocks away)" + nothing: + biome: "§cCould not find a biome of type %0 within a reasonable distance" + structure: "§cCould not find a structure of type %0 within a reasonable distance" +... \ No newline at end of file diff --git a/src/JavaGen/EventListener.php b/src/JavaGen/EventListener.php new file mode 100644 index 0000000..fe1a315 --- /dev/null +++ b/src/JavaGen/EventListener.php @@ -0,0 +1,85 @@ +getWorld()->getProvider()->getWorldData()->getGenerator())) { + return; + } + + $asyncPool = Server::getInstance()->getAsyncPool(); + foreach ($asyncPool->getRunningWorkers() as $i) { + $asyncPool->submitTaskToWorker(new class extends AsyncTask { + + public function onRun(): void { + $worker = Thread::getCurrentThread(); + if ($worker instanceof AsyncWorker) { + $data = $worker->getFromThreadStore(BaseJavaGenerator::WORKER_DATA); + if ($data !== null) { + $this->setResult($data); + $worker->removeFromThreadStore(BaseJavaGenerator::WORKER_DATA); + } + } + } + + public function onCompletion(): void { + if ($this->hasResult()) { + $resultStack = json_decode($this->getResult(), true, flags: JSON_THROW_ON_ERROR); + + foreach ($resultStack as $result) { + $expectedDimension = $result["dimension"]; + $chunkX = $result["chunkX"]; + $chunkZ = $result["chunkZ"]; + + $world = Dimension::tryFrom($expectedDimension)?->findWorld(); + if ($world === null) { + return; + } + $chunk = $world->getChunk($chunkX, $chunkZ); + foreach ($result["tiles"] ?? [] as $tile) { + $javaTile = new JavaTile($tile); + $mapping = JavaTileMappings::getInstance()->findMapping($javaTile->getId()); + if ($mapping !== null) { + $mapping($javaTile, $world, $chunk); + } + } + foreach ($result["structures"] ?? [] as $structureData) { + $structure = new Structure(StructureType::from($structureData["name"]), Structure::parseBoundingBox($structureData["boundingBox"])); + StructureManager::getInstance()->putStructure($structure); + + if (StructureGenerateEvent::hasHandlers()) { + (new StructureGenerateEvent($world, $structure))->call(); + } + } + if ($chunk?->isTerrainDirty()) { + $world->setChunk($chunkX, $chunkZ, $chunk); + } + } + } + } + }, $i); + } + } +} \ No newline at end of file diff --git a/src/JavaGen/JavaGen.php b/src/JavaGen/JavaGen.php new file mode 100644 index 0000000..9cd95b4 --- /dev/null +++ b/src/JavaGen/JavaGen.php @@ -0,0 +1,117 @@ +validateConfig(); + $this->testConnection(); + + GeneratorManager::getInstance()->addGenerator(OverworldGenerator::class, GeneratorNames::OVERWORLD, fn() => null); + GeneratorManager::getInstance()->addGenerator(NetherGenerator::class, GeneratorNames::NETHER, fn() => null); + GeneratorManager::getInstance()->addGenerator(EndGenerator::class, GeneratorNames::END, fn() => null); + + if (Server::getInstance()->getWorldManager()->isWorldLoaded("world")) { + Server::getInstance()->getWorldManager()->unloadWorld(Server::getInstance()->getWorldManager()->getDefaultWorld(), true); + } + $this->removeFolder(Server::getInstance()->getDataPath() . "worlds"); + $manager = Server::getInstance()->getWorldManager(); + $defaultOptions = new WorldCreationOptions(); + $defaultOptions->setGeneratorOptions($this->getDataFolder()); + if (!$manager->isWorldGenerated("world")) $manager->generateWorld("world", $defaultOptions->setGeneratorClass(OverworldGenerator::class)); + //if (!$manager->isWorldGenerated("nether")) $manager->generateWorld("nether", $defaultOptions->setGeneratorClass(NetherGenerator::class)); + //if (!$manager->isWorldGenerated("end")) $manager->generateWorld("end", $defaultOptions->setGeneratorClass(EndGenerator::class)); + $manager->setDefaultWorld($manager->getWorldByName("world")); + $this->getServer()->getCommandMap()->register("JavaGen", new class extends Command { + + public function __construct() { + parent::__construct("world"); + $this->setPermission("world.command"); + } + + public function execute(CommandSender $sender, string $commandLabel, array $args): void { + if (!$sender instanceof Player) return; + + $world = $args[0] ?? "nether"; + $sender->teleport(Position::fromObject(new Vector3(100, 50, 0), Server::getInstance()->getWorldManager()->getWorldByName($world))); + + $sender->getNetworkSession()->sendDataPacket(GameRulesChangedPacket::create([ + "showCoordinates" => new BoolGameRule(true, false) + ])); + } + }); + } + + protected function onEnable(): void { + $this->getServer()->getPluginManager()->registerEvents(new EventListener(), $this); + $this->getServer()->getCommandMap()->register("JavaGen", new LocateCommand()); + } + + protected function testConnection(): void { + $task = new class extends AsyncTask { + + public function onRun(): void { + JavaRequests::requestChunk(Dimension::OVERWORLD, 0, 0, $stream); + } + }; + $this->getServer()->getAsyncPool()->submitTask($task); + } + + private function validateConfig(): void { + $this->saveResource("messages.yml"); + // todo: make address & port variable + //$this->saveDefaultConfig(); + //assert(is_string($this->getConfig()->get("address")), new RuntimeException("Config field \"address\" is missing or not a string")); + //assert(is_int($this->getConfig()->get("port")), new RuntimeException("Config field \"port\" is missing or not a number")); + } + + private function removeFolder(string $path): void { + $path = rtrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR; + foreach (array_diff(scandir($path), [".", ".."]) as $file) { + if (is_dir($path . $file)) { + $this->removeFolder($path . $file); + continue; + } + unlink($path . $file); + } + rmdir($path); + } +} \ No newline at end of file diff --git a/src/JavaGen/commands/LocateCommand.php b/src/JavaGen/commands/LocateCommand.php new file mode 100644 index 0000000..bd80562 --- /dev/null +++ b/src/JavaGen/commands/LocateCommand.php @@ -0,0 +1,120 @@ + + */ + public static array $resolverCache = []; + + public function __construct() { + parent::__construct( + "locate", + "Locates the nearest structure or biome", + "/locate biome <" . implode("|", BiomeIdentifierRegistry::getInstance()->getBiomeNames()) . "> " . + "OR /locate structure <" . implode("|", array_map(fn(StructureType $type) => $type->value, StructureType::cases())) . ">"); + $this->setPermission("locate.command"); + } + + public function execute(CommandSender $sender, string $commandLabel, array $args): void { + if (!$sender instanceof Player or !isset($args[1])) { + $sender->sendMessage(Messages::getInstance()->get(MessageKey::COMMAND_LOCATE_INGAME)); + return; + } + switch ($args[0]) { + case "biome": + $targetBiome = $args[1]; + if (BiomeIdentifierRegistry::getInstance()->get($targetBiome, false) === null) { + $sender->sendMessage(Messages::getInstance()->get(MessageKey::COMMAND_LOCATE_INVALID_BIOME, $targetBiome)); + return; + } + $this->locateObject("biome", $targetBiome, $sender->getPosition())->onCompletion(function(Vector3 $vector3) use ($sender, $targetBiome): void { + $sender->sendMessage(Messages::getInstance()->get(MessageKey::COMMAND_LOCATE_SUCCESS_BIOME, $targetBiome, $vector3->x, "?", $vector3->z, floor($sender->getPosition()->distance($vector3)))); + }, function() use ($sender, $targetBiome): void { + $sender->sendMessage(Messages::getInstance()->get(MessageKey::COMMAND_LOCATE_NOTHING_BIOME, $targetBiome)); + }); + break; + case "structure": + $targetStructure = $args[1]; + if (StructureType::tryFrom($targetStructure) === null) { + $sender->sendMessage(Messages::getInstance()->get(MessageKey::COMMAND_LOCATE_INVALID_STRUCTURE, $targetStructure)); + return; + } + $this->locateObject("structure", $targetStructure, $sender->getPosition())->onCompletion(function(Vector3 $vector3) use ($sender, $targetStructure): void { + $sender->sendMessage(Messages::getInstance()->get(MessageKey::COMMAND_LOCATE_SUCCESS_STRUCTURE, $targetStructure, $vector3->x, "?", $vector3->z, floor($sender->getPosition()->distance($vector3)))); + }, function() use ($sender, $targetStructure): void { + $sender->sendMessage(Messages::getInstance()->get(MessageKey::COMMAND_LOCATE_NOTHING_STRUCTURE, $targetStructure)); + }); + break; + default: + $sender->sendMessage(Messages::getInstance()->get(MessageKey::COMMAND_LOCATE_INVALID_CATEGORY, $args[0])); + break; + } + } + + private function locateObject(string $category, string $name, Position $position): Promise { + $resolver = new PromiseResolver(); + $id = spl_object_id($resolver); + LocateCommand::$resolverCache[$id] = $resolver; + $dimension = GeneratorNames::toDimension($position->getWorld()); + $vec = $position->asVector3()->floor(); + + $task = new class ($id, $category, $name, $dimension, $vec->x, $vec->y, $vec->z) extends AsyncTask { + + public function __construct( + private readonly int $promiseId, + private readonly string $category, + private readonly string $name, + private readonly Dimension $dimension, + private readonly int $x, + private readonly int $y, + private readonly int $z, + ) { } + + public function onRun(): void { + $this->setResult(JavaRequests::findNearestObject($this->category, $this->dimension, new Vector3($this->x, $this->y, $this->z), $this->name)); + } + + public function onCompletion(): void { + $resolver = LocateCommand::$resolverCache[$this->promiseId] ?? null; + unset(LocateCommand::$resolverCache[$this->promiseId]); + if ($resolver === null) { + return; + } + if ($this->hasResult() and ($result = $this->getResult()) instanceof Vector3) { + $resolver->resolve($result); + } else { + $resolver->reject(); + } + } + }; + Server::getInstance()->getAsyncPool()->submitTask($task); + return $resolver->getPromise(); + } +} \ No newline at end of file diff --git a/src/JavaGen/data/DataRegistry.php b/src/JavaGen/data/DataRegistry.php new file mode 100644 index 0000000..1427b0d --- /dev/null +++ b/src/JavaGen/data/DataRegistry.php @@ -0,0 +1,16 @@ +messageKeys = new Config(JavaGen::getInstance()->getDataFolder() . "messages.yml", Config::YAML); + } + + public function get(MessageKey $key, string|int|float ...$replaces): string { + $message = $this->messageKeyCache[$key->value] ??= $this->messageKeys->getNested($key->value) ?? "Invalid message key " . $key->value . " for plugin JavaGen."; + foreach ($replaces as $i => $replace) { + $message = str_replace("%" . $i, (string) $replace, $message); + } + return $message; + } +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/abandoned_mineshaft.json b/src/JavaGen/data/lootTable/abandoned_mineshaft.json new file mode 100644 index 0000000..8da40f0 --- /dev/null +++ b/src/JavaGen/data/lootTable/abandoned_mineshaft.json @@ -0,0 +1,284 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:golden_apple", + "weight": 20 + }, + { + "type": "item", + "name": "minecraft:appleEnchanted", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:name_tag", + "weight": 30 + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 10, + "functions": [ + { + "function": "enchant_randomly" + } + ] + }, + { + "type": "item", + "name": "minecraft:iron_pickaxe", + "weight": 5 + }, + { + "type": "empty", + "weight": 5 + } + ] + }, + { + "rolls": { + "min": 2, + "max": 4 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:redstone", + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 9 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:dye", + "functions": [ + { + "function": "set_data", + "data": 4 + }, + { + "function": "set_count", + "count": { + "min": 4, + "max": 9 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:diamond", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ], + "weight": 3 + }, + { + "type": "item", + "name": "minecraft:coal", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 8 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:bread", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:melon_seeds", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:pumpkin_seeds", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:beetroot_seeds", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:glow_berries", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 6 + } + } + ], + "weight": 15 + } + ] + }, + { + "rolls": 3, + "entries": [ + { + "type": "item", + "name": "minecraft:rail", + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 8 + } + } + ], + "weight": 20 + }, + { + "type": "item", + "name": "minecraft:golden_rail", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:detector_rail", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:activator_rail", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:torch", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 16 + } + } + ], + "weight": 15 + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/ancient_city.json b/src/JavaGen/data/lootTable/ancient_city.json new file mode 100644 index 0000000..3603a17 --- /dev/null +++ b/src/JavaGen/data/lootTable/ancient_city.json @@ -0,0 +1,416 @@ +{ + "pools": [ + { + "rolls": { + "min": 5, + "max": 10.0 + }, + "bonus_rolls": 0, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2.0 + }, + "add": false + } + ], + "name": "minecraft:enchanted_golden_apple", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:music_disc_otherside", + "weight": 1 + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": 1, + "add": false + } + ], + "name": "minecraft:compass" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2.0 + }, + "add": false + } + ], + "name": "minecraft:sculk_catalyst" + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:name_tag" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": 1, + "add": false + }, + { + "function": "set_damage", + "damage": { + "min": 0.8, + "max": 1.0 + }, + "add": false + }, + { + "function": "enchant_with_levels", + "levels": { + "min": 30, + "max": 50.0 + }, + "treasure": true + } + ], + "name": "minecraft:diamond_hoe" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": 1, + "add": false + } + ], + "name": "minecraft:lead" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": 1, + "add": false + } + ], + "name": "minecraft:diamond_horse_armor" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": 1, + "add": false + } + ], + "name": "minecraft:saddle" + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:music_disc_13" + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:music_disc_cat" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "enchant_with_levels", + "levels": { + "min": 30, + "max": 50.0 + }, + "treasure": true + } + ], + "name": "minecraft:diamond_leggings" + }, + { + "type": "item", + "weight": 3, + "functions": [ + { + "function": "specific_enchants", + "enchants": [ + { + "id": "swift_sneak", + "level": [ + 1, + 3 + ] + } + ] + } + ], + "name": "minecraft:book" + }, + { + "type": "item", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 10.0 + }, + "add": false + } + ], + "name": "minecraft:sculk" + }, + { + "type": "item", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3.0 + }, + "add": false + } + ], + "name": "minecraft:sculk_sensor" + }, + { + "type": "item", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4.0 + }, + "add": false + } + ], + "name": "minecraft:candle" + }, + { + "type": "item", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 15.0 + }, + "add": false + } + ], + "name": "minecraft:amethyst_shard" + }, + { + "type": "item", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3.0 + }, + "add": false + } + ], + "name": "minecraft:experience_bottle" + }, + { + "type": "item", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 15.0 + }, + "add": false + } + ], + "name": "minecraft:glow_berries" + }, + { + "type": "item", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "levels": { + "min": 20, + "max": 39.0 + }, + "treasure": true + } + ], + "name": "minecraft:iron_leggings" + }, + { + "type": "item", + "weight": 4, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3.0 + }, + "add": false + } + ], + "name": "minecraft:echo_shard" + }, + { + "type": "item", + "weight": 4, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3.0 + }, + "add": false + } + ], + "name": "minecraft:disc_fragment_5" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3.0 + }, + "add": false + }, + { + "function": "set_data", + "data": 30 + } + ], + "name": "minecraft:potion" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:book" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 10.0 + }, + "add": false + } + ], + "name": "minecraft:book" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 15.0 + }, + "add": false + } + ], + "name": "minecraft:bone" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 15.0 + }, + "add": false + } + ], + "name": "minecraft:soul_torch" + }, + { + "type": "item", + "weight": 7, + "functions": [ + { + "function": "set_count", + "count": { + "min": 6, + "max": 15.0 + }, + "add": false + } + ], + "name": "minecraft:coal" + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 75 + }, + { + "type": "item", + "name": "minecraft:ward_armor_trim_smithing_template", + "weight": 4 + }, + { + "type": "item", + "name": "minecraft:silence_armor_trim_smithing_template", + "weight": 1 + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/ancient_city_ice_box.json b/src/JavaGen/data/lootTable/ancient_city_ice_box.json new file mode 100644 index 0000000..2a5d49f --- /dev/null +++ b/src/JavaGen/data/lootTable/ancient_city_ice_box.json @@ -0,0 +1,99 @@ +{ + "pools": [ + { + "rolls": { + "min": 4, + "max": 10.0 + }, + "bonus_rolls": 0, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "minecraft:set_stew_effect", + "effects": [ + { + "id": 0 + }, + { + "id": 3 + } + ] + }, + { + "function": "set_count", + "count": { + "min": 2, + "max": 6.0 + }, + "add": false + } + ], + "name": "minecraft:suspicious_stew", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 10.0 + }, + "add": false + } + ], + "name": "minecraft:golden_carrot", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 10.0 + }, + "add": false + } + ], + "name": "minecraft:baked_potato", + "weight": 1 + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 6.0 + }, + "add": false + } + ], + "name": "minecraft:packed_ice" + }, + { + "type": "item", + "weight": 4, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 6.0 + }, + "add": false + } + ], + "name": "minecraft:snowball" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/bastion_bridge.json b/src/JavaGen/data/lootTable/bastion_bridge.json new file mode 100644 index 0000000..4b9b0de --- /dev/null +++ b/src/JavaGen/data/lootTable/bastion_bridge.json @@ -0,0 +1,312 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:lodestone" + } + ] + }, + { + "rolls": { + "min": 1, + "max": 2 + }, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.5 + } + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:crossbow", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 10, + "max": 28 + } + } + ], + "name": "minecraft:arrow", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 8, + "max": 12 + } + } + ], + "name": "minecraft:gilded_blackstone", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 8 + } + } + ], + "name": "minecraft:crying_obsidian", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:gold_block", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 9 + } + } + ], + "name": "minecraft:gold_ingot", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 9 + } + } + ], + "name": "minecraft:iron_ingot", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:golden_sword", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:golden_chestplate", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:golden_helmet", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:golden_leggings", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:golden_boots", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:golden_axe", + "weight": 1 + } + ] + }, + { + "rolls": { + "min": 2, + "max": 4 + }, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 6 + } + } + ], + "name": "minecraft:string", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:leather", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 5, + "max": 17 + } + } + ], + "name": "minecraft:arrow", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 6 + } + } + ], + "name": "minecraft:iron_nugget", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 6 + } + } + ], + "name": "minecraft:gold_nugget", + "weight": 1 + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 11 + }, + { + "type": "item", + "name": "minecraft:snout_armor_trim_smithing_template", + "weight": 1 + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 9 + }, + { + "type": "item", + "name": "minecraft:netherite_upgrade_smithing_template", + "weight": 1 + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/bastion_hoglin_stable.json b/src/JavaGen/data/lootTable/bastion_hoglin_stable.json new file mode 100644 index 0000000..08fec15 --- /dev/null +++ b/src/JavaGen/data/lootTable/bastion_hoglin_stable.json @@ -0,0 +1,347 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "weight": 15, + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.15, + "max": 0.8 + } + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:diamond_shovel" + }, + { + "type": "item", + "weight": 8, + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:netherite_scrap" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:ancient_debris" + }, + { + "type": "item", + "weight": 12, + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:saddle" + }, + { + "type": "item", + "weight": 16, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ], + "name": "minecraft:gold_block" + }, + { + "type": "item", + "weight": 12, + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.15, + "max": 0.95 + } + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:diamond_pickaxe" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 8, + "max": 17 + } + } + ], + "name": "minecraft:golden_carrot" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:golden_apple" + } + ] + }, + { + "rolls": { + "min": 3, + "max": 4 + }, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 6 + } + } + ], + "name": "minecraft:glowstone", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ], + "name": "minecraft:gilded_blackstone", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 7 + } + } + ], + "name": "minecraft:soul_sand", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 7 + } + } + ], + "name": "minecraft:crimson_nylium", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 8 + } + } + ], + "name": "minecraft:gold_nugget", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:leather", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 5, + "max": 17 + } + } + ], + "name": "minecraft:arrow", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 8 + } + } + ], + "name": "minecraft:string", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ], + "name": "minecraft:porkchop", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ], + "name": "minecraft:cooked_porkchop", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 7 + } + } + ], + "name": "minecraft:crimson_fungus", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 7 + } + } + ], + "name": "minecraft:crimson_roots", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "name": "minecraft:crying_obsidian", + "weight": 1 + }, + { + "type": "item", + "weight": 1, + "functions": [ + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:golden_axe" + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 11 + }, + { + "type": "item", + "name": "minecraft:snout_armor_trim_smithing_template", + "weight": 1 + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 9 + }, + { + "type": "item", + "name": "minecraft:netherite_upgrade_smithing_template", + "weight": 1 + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/bastion_other.json b/src/JavaGen/data/lootTable/bastion_other.json new file mode 100644 index 0000000..5f7a40e --- /dev/null +++ b/src/JavaGen/data/lootTable/bastion_other.json @@ -0,0 +1,505 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:crossbow" + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:diamond_pickaxe" + }, + { + "type": "item", + "weight": 6, + "name": "minecraft:diamond_shovel" + }, + { + "type": "item", + "weight": 12, + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:ancient_debris" + }, + { + "type": "item", + "weight": 4, + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:netherite_scrap" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 10, + "max": 22 + } + } + ], + "name": "minecraft:arrow" + }, + { + "type": "item", + "weight": 12, + "functions": [ + { + "function": "set_count", + "count": { + "min": 6, + "max": 17 + } + } + ], + "name": "minecraft:golden_carrot" + }, + { + "type": "item", + "weight": 9, + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_data", + "data": 6 + } + ], + "name": "minecraft:banner_pattern" + }, + { + "type": "item", + "weight": 9, + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:golden_apple" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:record_pigstep" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "specific_enchants", + "enchants": [ + { + "id": "soul_speed", + "level": [ + 1, + 3 + ] + } + ] + } + ], + "name": "minecraft:book" + } + ] + }, + { + "rolls": 2, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "specific_enchants", + "enchants": [ + { + "id": "soul_speed", + "level": [ + 1, + 3 + ] + } + ] + } + ], + "name": "minecraft:golden_boots", + "weight": 1 + }, + { + "type": "item", + "weight": 1, + "functions": [ + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:golden_axe" + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:gold_block", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:iron_block", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:crossbow", + "weight": 1 + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.1, + "max": 0.9 + } + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:iron_sword" + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 6 + } + } + ], + "name": "minecraft:gold_ingot", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 6 + } + } + ], + "name": "minecraft:iron_ingot", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:golden_sword", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:golden_chestplate", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:golden_helmet", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:golden_leggings", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:golden_boots", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "name": "minecraft:crying_obsidian", + "weight": 1 + } + ] + }, + { + "rolls": { + "min": 3, + "max": 5 + }, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "name": "minecraft:gilded_blackstone", + "weight": 2 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 10 + } + } + ], + "name": "minecraft:chain", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 6 + } + } + ], + "name": "minecraft:magma_cream", + "weight": 2 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 6 + } + } + ], + "name": "minecraft:bone_block", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 8 + } + } + ], + "name": "minecraft:iron_nugget", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 6 + } + } + ], + "name": "minecraft:obsidian", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 8 + } + } + ], + "name": "minecraft:gold_nugget", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 6 + } + } + ], + "name": "minecraft:string", + "weight": 1 + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 5, + "max": 17 + } + } + ], + "name": "minecraft:arrow" + }, + { + "type": "item", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:cooked_porkchop" + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 11 + }, + { + "type": "item", + "name": "minecraft:snout_armor_trim_smithing_template", + "weight": 1 + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 9 + }, + { + "type": "item", + "name": "minecraft:netherite_upgrade_smithing_template", + "weight": 1 + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/bastion_treasure.json b/src/JavaGen/data/lootTable/bastion_treasure.json new file mode 100644 index 0000000..14997ee --- /dev/null +++ b/src/JavaGen/data/lootTable/bastion_treasure.json @@ -0,0 +1,335 @@ +{ + "pools": [ + { + "rolls": 3, + "entries": [ + { + "type": "item", + "weight": 15, + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:netherite_ingot" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "item", + "weight": 8, + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "name": "minecraft:netherite_scrap" + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": 2 + } + ], + "name": "minecraft:ancient_debris", + "weight": 4 + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.8, + "max": 1 + } + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:diamond_sword" + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.8, + "max": 1 + } + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:diamond_chestplate" + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.8, + "max": 1 + } + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:diamond_helmet" + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.8, + "max": 1 + } + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:diamond_leggings" + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "min": 0.8, + "max": 1 + } + }, + { + "function": "enchant_randomly" + } + ], + "name": "minecraft:diamond_boots" + }, + { + "type": "item", + "weight": 6, + "name": "minecraft:diamond_sword" + }, + { + "type": "item", + "weight": 5, + "name": "minecraft:diamond_chestplate" + }, + { + "type": "item", + "weight": 5, + "name": "minecraft:diamond_helmet" + }, + { + "type": "item", + "weight": 5, + "name": "minecraft:diamond_boots" + }, + { + "type": "item", + "weight": 5, + "name": "minecraft:diamond_leggings" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 6 + } + } + ], + "name": "minecraft:diamond" + } + ] + }, + { + "rolls": { + "min": 3, + "max": 4 + }, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 12, + "max": 25 + } + } + ], + "name": "minecraft:arrow", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ], + "name": "minecraft:gold_block", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 9 + } + } + ], + "name": "minecraft:gold_ingot", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 9 + } + } + ], + "name": "minecraft:iron_ingot", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 5 + } + } + ], + "name": "minecraft:crying_obsidian", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 8, + "max": 23 + } + } + ], + "name": "minecraft:quartz", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 5, + "max": 15 + } + } + ], + "name": "minecraft:gilded_blackstone", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 8 + } + } + ], + "name": "minecraft:magma_cream", + "weight": 1 + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ], + "name": "minecraft:iron_block", + "weight": 1 + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 11 + }, + { + "type": "item", + "name": "minecraft:snout_armor_trim_smithing_template", + "weight": 1 + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:netherite_upgrade_smithing_template", + "weight": 1 + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/buried_treasure.json b/src/JavaGen/data/lootTable/buried_treasure.json new file mode 100644 index 0000000..f6fa0d0 --- /dev/null +++ b/src/JavaGen/data/lootTable/buried_treasure.json @@ -0,0 +1,177 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:heart_of_the_sea" + } + ] + }, + { + "rolls": { + "min": 5, + "max": 12 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:prismarine_crystals", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 5 + } + } + ], + "weight": 20 + }, + { + "type": "item", + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:tnt", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:diamond", + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:record_wait", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:record_mellohi", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:name_tag", + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:chainmail_chestplate", + "weight": 20 + }, + { + "type": "item", + "name": "minecraft:chainmail_helmet", + "weight": 20 + }, + { + "type": "item", + "name": "minecraft:chainmail_leggings", + "weight": 20 + }, + { + "type": "item", + "name": "minecraft:chainmail_boots", + "weight": 20 + }, + { + "type": "item", + "name": "minecraft:writable_book", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:lead", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:experience_bottle", + "weight": 3 + }, + { + "type": "item", + "name": "minecraft:potion", + "functions": [ + { + "function": "set_data", + "data": 19 + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:potion", + "functions": [ + { + "function": "set_data", + "data": 28 + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:cake", + "weight": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/desert_pyramid.json b/src/JavaGen/data/lootTable/desert_pyramid.json new file mode 100644 index 0000000..c9f9592 --- /dev/null +++ b/src/JavaGen/data/lootTable/desert_pyramid.json @@ -0,0 +1,249 @@ +{ + "pools": [ + { + "rolls": { + "min": 2, + "max": 4 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:diamond", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 7 + } + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:emerald", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:bone", + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 6 + } + } + ], + "weight": 25 + }, + { + "type": "item", + "name": "minecraft:spider_eye", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 25 + }, + { + "type": "item", + "name": "minecraft:rotten_flesh", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 7 + } + } + ], + "weight": 25 + }, + { + "type": "item", + "name": "minecraft:saddle", + "weight": 20 + }, + { + "type": "item", + "name": "minecraft:horsearmoriron", + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:horsearmorgold", + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:horsearmordiamond", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 20, + "functions": [ + { + "function": "enchant_randomly" + } + ] + }, + { + "type": "item", + "name": "minecraft:golden_apple", + "weight": 20 + }, + { + "type": "item", + "name": "minecraft:appleEnchanted", + "weight": 2 + }, + { + "type": "empty", + "weight": 15 + } + ] + }, + { + "rolls": 4, + "entries": [ + { + "type": "item", + "name": "minecraft:bone", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:gunpowder", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:rotten_flesh", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:string", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:sand", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 8 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 6 + }, + { + "type": "item", + "name": "minecraft:dune_armor_trim_smithing_template", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 2 + } + ] + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/dispenser_trap.json b/src/JavaGen/data/lootTable/dispenser_trap.json new file mode 100644 index 0000000..36778a1 --- /dev/null +++ b/src/JavaGen/data/lootTable/dispenser_trap.json @@ -0,0 +1,26 @@ +{ + "pools": [ + { + "rolls": { + "min": 2, + "max": 2 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:arrow", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 7 + } + } + ], + "weight": 30 + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/end_city_treasure.json b/src/JavaGen/data/lootTable/end_city_treasure.json new file mode 100644 index 0000000..7c55f9f --- /dev/null +++ b/src/JavaGen/data/lootTable/end_city_treasure.json @@ -0,0 +1,326 @@ +{ + "pools": [ + { + "rolls": { + "min": 2, + "max": 6 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:diamond", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 7 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:iron_ingot", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:gold_ingot", + "weight": 15, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 7 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:emerald", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 6 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:beetroot_seeds", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 10 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:saddle", + "weight": 3 + }, + { + "type": "item", + "name": "minecraft:horsearmoriron", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:horsearmorgold", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:horsearmordiamond", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:diamond_sword", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 20, + "max": 39 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond_boots", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 20, + "max": 39 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond_chestplate", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 20, + "max": 39 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond_leggings", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 20, + "max": 39 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond_helmet", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 20, + "max": 39 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond_pickaxe", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 20, + "max": 39 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond_shovel", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 20, + "max": 39 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:iron_sword", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 20, + "max": 39 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:iron_boots", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 20, + "max": 39 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:iron_chestplate", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 20, + "max": 39 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:iron_leggings", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 20, + "max": 39 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:iron_helmet", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 20, + "max": 39 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:iron_pickaxe", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 20, + "max": 39 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:iron_shovel", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 20, + "max": 39 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 14 + }, + { + "type": "item", + "name": "minecraft:spire_armor_trim_smithing_template", + "weight": 1 + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/igloo_chest.json b/src/JavaGen/data/lootTable/igloo_chest.json new file mode 100644 index 0000000..3590f52 --- /dev/null +++ b/src/JavaGen/data/lootTable/igloo_chest.json @@ -0,0 +1,93 @@ +{ + "pools": [ + { + "rolls": { + "min": 2, + "max": 8 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:apple", + "weight": 15, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:coal", + "weight": 15, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:gold_nugget", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:stone_axe", + "weight": 2 + }, + { + "type": "item", + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:emerald", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:wheat", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 3 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:golden_apple", + "weight": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/jungle_temple.json b/src/JavaGen/data/lootTable/jungle_temple.json new file mode 100644 index 0000000..204a323 --- /dev/null +++ b/src/JavaGen/data/lootTable/jungle_temple.json @@ -0,0 +1,162 @@ +{ + "pools": [ + { + "rolls": { + "min": 2, + "max": 6 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:diamond", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "weight": 50 + }, + { + "type": "item", + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 7 + } + } + ], + "weight": 75 + }, + { + "type": "item", + "name": "minecraft:emerald", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:bone", + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 6 + } + } + ], + "weight": 100 + }, + { + "type": "item", + "name": "minecraft:rotten_flesh", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 7 + } + } + ], + "weight": 80 + }, + { + "type": "item", + "name": "minecraft:bamboo", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 75 + }, + { + "type": "item", + "name": "minecraft:saddle", + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:horsearmoriron", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:horsearmorgold", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:horsearmordiamond", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 6, + "functions": [ + { + "function": "enchant_with_levels", + "levels": 30, + "treasure": true + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 2 + }, + { + "type": "item", + "name": "minecraft:wild_armor_trim_smithing_template", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 2 + } + ] + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/monster_room.json b/src/JavaGen/data/lootTable/monster_room.json new file mode 100644 index 0000000..89e0a40 --- /dev/null +++ b/src/JavaGen/data/lootTable/monster_room.json @@ -0,0 +1,119 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:redstone", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:bread", + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:golden_apple", + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:wheat", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:gunpowder", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:string", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:name_tag", + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:bucket", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:horsearmoriron", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:horsearmorgold", + "weight": 2 + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 1, + "functions": [ + { + "function": "enchant_randomly" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/nether_bridge.json b/src/JavaGen/data/lootTable/nether_bridge.json new file mode 100644 index 0000000..6129cb3 --- /dev/null +++ b/src/JavaGen/data/lootTable/nether_bridge.json @@ -0,0 +1,131 @@ +{ + "pools": [ + { + "rolls": { + "min": 2, + "max": 4 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:diamond", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:golden_sword", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:golden_chestplate", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:flint_and_steel", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:nether_wart", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 7 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:saddle", + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:horsearmorgold", + "weight": 8 + }, + { + "type": "item", + "name": "minecraft:horsearmoriron", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:horsearmordiamond", + "weight": 3 + }, + { + "type": "item", + "name": "minecraft:obsidian", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ], + "weight": 2 + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 14 + }, + { + "type": "item", + "name": "minecraft:rib_armor_trim_smithing_template", + "weight": 1 + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/pillager_outpost.json b/src/JavaGen/data/lootTable/pillager_outpost.json new file mode 100644 index 0000000..7058bb0 --- /dev/null +++ b/src/JavaGen/data/lootTable/pillager_outpost.json @@ -0,0 +1,211 @@ +{ + "pools": [ + { + "rolls": { + "min": 0, + "max": 1 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:crossbow" + } + ] + }, + { + "rolls": { + "min": 2, + "max": 3 + }, + "entries": [ + { + "type": "item", + "weight": 7, + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 5 + } + } + ], + "name": "minecraft:wheat" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ], + "name": "minecraft:potato" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 5 + } + } + ], + "name": "minecraft:carrot" + } + ] + }, + { + "rolls": { + "min": 1, + "max": 3 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:log2", + "weight": 1, + "functions": [ + { + "function": "set_data", + "data": 1 + }, + { + "function": "set_count", + "count": { + "min": 2, + "max": 3 + } + } + ] + } + ] + }, + { + "rolls": { + "min": 2, + "max": 3 + }, + "entries": [ + { + "type": "item", + "weight": 7, + "name": "minecraft:experience_bottle" + }, + { + "type": "item", + "weight": 4, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 6 + } + } + ], + "name": "minecraft:string" + }, + { + "type": "item", + "weight": 4, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 7 + } + } + ], + "name": "minecraft:arrow" + }, + { + "type": "item", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:tripwire_hook" + }, + { + "type": "item", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:iron_ingot" + }, + { + "type": "item", + "functions": [ + { + "function": "minecraft:enchant_randomly" + } + ], + "name": "minecraft:book" + } + ] + }, + { + "rolls": { + "min": 0, + "max": 1 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:goat_horn", + "functions": [ + { + "function": "set_data", + "data": { + "min": 0, + "max": 3 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 3 + }, + { + "type": "item", + "name": "minecraft:sentry_armor_trim_smithing_template", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 2 + } + ] + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/ruined_portal.json b/src/JavaGen/data/lootTable/ruined_portal.json new file mode 100644 index 0000000..a5764c7 --- /dev/null +++ b/src/JavaGen/data/lootTable/ruined_portal.json @@ -0,0 +1,254 @@ +{ + "pools": [ + { + "rolls": { + "min": 4, + "max": 8 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:obsidian", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ], + "weight": 40 + }, + { + "type": "item", + "name": "minecraft:flint", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "weight": 40 + }, + { + "type": "item", + "name": "minecraft:iron_nugget", + "functions": [ + { + "function": "set_count", + "count": { + "min": 9, + "max": 18 + } + } + ], + "weight": 40 + }, + { + "type": "item", + "name": "minecraft:flint_and_steel", + "weight": 40 + }, + { + "type": "item", + "name": "minecraft:fireball", + "weight": 40 + }, + { + "type": "item", + "name": "minecraft:golden_apple", + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:gold_nugget", + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 24 + } + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:golden_sword", + "functions": [ + { + "function": "enchant_randomly" + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:golden_axe", + "functions": [ + { + "function": "enchant_randomly" + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:golden_hoe", + "functions": [ + { + "function": "enchant_randomly" + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:golden_shovel", + "functions": [ + { + "function": "enchant_randomly" + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:golden_pickaxe", + "functions": [ + { + "function": "enchant_randomly" + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:golden_boots", + "functions": [ + { + "function": "enchant_randomly" + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:golden_chestplate", + "functions": [ + { + "function": "enchant_randomly" + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:golden_helmet", + "functions": [ + { + "function": "enchant_randomly" + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:golden_leggings", + "functions": [ + { + "function": "enchant_randomly" + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:speckled_melon", + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 12 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:horsearmorgold", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:light_weighted_pressure_plate", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:golden_carrot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 12 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:clock", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 8 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:bell", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:appleEnchanted", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:gold_block", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ], + "weight": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/shipwreck.json b/src/JavaGen/data/lootTable/shipwreck.json new file mode 100644 index 0000000..3729d05 --- /dev/null +++ b/src/JavaGen/data/lootTable/shipwreck.json @@ -0,0 +1,101 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:map", + "functions": [ + { + "function": "exploration_map", + "destination": "buriedtreasure" + } + ] + } + ] + }, + { + "rolls": 3, + "entries": [ + { + "type": "item", + "name": "minecraft:compass", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:map", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:clock", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:paper", + "weight": 20, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 10 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:feather", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:coast_armor_trim_smithing_template", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 2 + } + ] + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/shipwrecksupply.json b/src/JavaGen/data/lootTable/shipwrecksupply.json new file mode 100644 index 0000000..82f8d46 --- /dev/null +++ b/src/JavaGen/data/lootTable/shipwrecksupply.json @@ -0,0 +1,254 @@ +{ + "pools": [ + { + "rolls": { + "min": 3, + "max": 10 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:paper", + "weight": 8, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 12 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:potato", + "weight": 7, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 6 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:moss_block", + "weight": 7, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:poisonous_potato", + "weight": 7, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 6 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:carrot", + "weight": 7, + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:wheat", + "weight": 7, + "functions": [ + { + "function": "set_count", + "count": { + "min": 8, + "max": 21 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:coal", + "weight": 6, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:rotten_flesh", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 5, + "max": 24 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:bamboo", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:pumpkin", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:gunpowder", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:tnt", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:leather_helmet", + "weight": 3, + "functions": [ + { + "function": "enchant_randomly" + } + ] + }, + { + "type": "item", + "name": "minecraft:leather_chestplate", + "weight": 3, + "functions": [ + { + "function": "enchant_randomly" + } + ] + }, + { + "type": "item", + "name": "minecraft:leather_leggings", + "weight": 3, + "functions": [ + { + "function": "enchant_randomly" + } + ] + }, + { + "type": "item", + "name": "minecraft:leather_boots", + "weight": 3, + "functions": [ + { + "function": "enchant_randomly" + } + ] + }, + { + "type": "item", + "name": "minecraft:suspicious_stew", + "weight": 10, + "functions": [ + { + "function": "random_aux_value", + "values": { + "min": 0, + "max": 6 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:coast_armor_trim_smithing_template", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 2 + } + ] + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/shipwrecktreasure.json b/src/JavaGen/data/lootTable/shipwrecktreasure.json new file mode 100644 index 0000000..7633f83 --- /dev/null +++ b/src/JavaGen/data/lootTable/shipwrecktreasure.json @@ -0,0 +1,138 @@ +{ + "pools": [ + { + "rolls": { + "min": 3, + "max": 6 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:iron_ingot", + "weight": 90, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:gold_ingot", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:emerald", + "weight": 40, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:experience_bottle", + "weight": 5 + } + ] + }, + { + "rolls": { + "min": 2, + "max": 5 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:iron_nugget", + "weight": 50, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 10 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:gold_nugget", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 10 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:dye", + "weight": 20, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 10 + } + }, + { + "function": "set_data", + "data": 4 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:coast_armor_trim_smithing_template", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 2 + } + ] + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/simple_dungeon.json b/src/JavaGen/data/lootTable/simple_dungeon.json new file mode 100644 index 0000000..0e36dd5 --- /dev/null +++ b/src/JavaGen/data/lootTable/simple_dungeon.json @@ -0,0 +1,263 @@ +{ + "pools": [ + { + "rolls": { + "min": 1, + "max": 3 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:saddle", + "weight": 20 + }, + { + "type": "item", + "name": "minecraft:golden_apple", + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:appleEnchanted", + "weight": 2 + }, + { + "type": "item", + "name": "minecraft:record_13", + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:record_cat", + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:record_otherside", + "weight": 2 + }, + { + "type": "item", + "name": "minecraft:name_tag", + "weight": 20 + }, + { + "type": "item", + "name": "minecraft:horsearmorgold", + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:horsearmoriron", + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:horsearmordiamond", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 10, + "functions": [ + { + "function": "enchant_randomly" + } + ] + } + ] + }, + { + "rolls": { + "min": 1, + "max": 4 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:iron_ingot", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:gold_ingot", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:bread", + "weight": 20 + }, + { + "type": "item", + "name": "minecraft:wheat", + "weight": 20, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:bucket", + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:redstone", + "weight": 15, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:coal", + "weight": 15, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:melon_seeds", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:pumpkin_seeds", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:beetroot_seeds", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ], + "weight": 10 + } + ] + }, + { + "rolls": 3, + "entries": [ + { + "type": "item", + "name": "minecraft:bone", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:gunpowder", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:rotten_flesh", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:string", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 8 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/spawn_bonus_chest.json b/src/JavaGen/data/lootTable/spawn_bonus_chest.json new file mode 100644 index 0000000..d0f2af0 --- /dev/null +++ b/src/JavaGen/data/lootTable/spawn_bonus_chest.json @@ -0,0 +1,498 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:stone_axe", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:wooden_axe", + "weight": 3 + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:stone_pickaxe", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:wooden_pickaxe", + "weight": 3 + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:apple", + "weight": 1, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:bread", + "weight": 1, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:salmon", + "weight": 1, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:stick", + "weight": 1, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 12 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:planks", + "weight": 1, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 12 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:log2", + "weight": 1, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:log2", + "weight": 1, + "functions": [ + { + "function": "minecraft:set_data", + "data": 1 + }, + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:mangrove_log", + "weight": 1, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:log", + "weight": 1, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:log", + "weight": 1, + "functions": [ + { + "function": "minecraft:set_data", + "data": 1 + }, + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:log", + "weight": 1, + "functions": [ + { + "function": "minecraft:set_data", + "data": 2 + }, + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:log", + "weight": 1, + "functions": [ + { + "function": "minecraft:set_data", + "data": 3 + }, + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:potato", + "weight": 3, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:carrot", + "weight": 3, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:sapling", + "weight": 2, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:sapling", + "weight": 2, + "functions": [ + { + "function": "minecraft:set_data", + "data": 1 + }, + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:sapling", + "weight": 2, + "functions": [ + { + "function": "minecraft:set_data", + "data": 2 + }, + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:sapling", + "weight": 4, + "functions": [ + { + "function": "minecraft:set_data", + "data": 3 + }, + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:sapling", + "weight": 2, + "functions": [ + { + "function": "minecraft:set_data", + "data": 4 + }, + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:sapling", + "weight": 2, + "functions": [ + { + "function": "minecraft:set_data", + "data": 5 + }, + { + "function": "minecraft:set_count", + "count": { + "min": 4, + "max": 4 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:melon_seeds", + "weight": 3, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:pumpkin_seeds", + "weight": 3, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:beetroot_seeds", + "weight": 3, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:cactus", + "weight": 3, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:dye", + "weight": 2, + "functions": [ + { + "function": "set_data", + "data": 3 + }, + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:brown_mushroom", + "weight": 2, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/stronghold_corridor.json b/src/JavaGen/data/lootTable/stronghold_corridor.json new file mode 100644 index 0000000..3237ede --- /dev/null +++ b/src/JavaGen/data/lootTable/stronghold_corridor.json @@ -0,0 +1,201 @@ +{ + "pools": [ + { + "rolls": { + "min": 2, + "max": 3 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:ender_pearl", + "weight": 50 + }, + { + "type": "item", + "name": "minecraft:emerald", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:diamond", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "weight": 50 + }, + { + "type": "item", + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 25 + }, + { + "type": "item", + "name": "minecraft:redstone", + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 9 + } + } + ], + "weight": 25 + }, + { + "type": "item", + "name": "minecraft:bread", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 75 + }, + { + "type": "item", + "name": "minecraft:apple", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 75 + }, + { + "type": "item", + "name": "minecraft:iron_pickaxe", + "weight": 25 + }, + { + "type": "item", + "name": "minecraft:iron_sword", + "weight": 25 + }, + { + "type": "item", + "name": "minecraft:iron_chestplate", + "weight": 25 + }, + { + "type": "item", + "name": "minecraft:iron_helmet", + "weight": 25 + }, + { + "type": "item", + "name": "minecraft:iron_leggings", + "weight": 25 + }, + { + "type": "item", + "name": "minecraft:iron_boots", + "weight": 25 + }, + { + "type": "item", + "name": "minecraft:golden_apple", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:saddle", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:horsearmoriron", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:horsearmorgold", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:horsearmordiamond", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:record_otherside", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 6, + "functions": [ + { + "function": "enchant_with_levels", + "levels": 30, + "treasure": true + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 9 + }, + { + "type": "item", + "name": "minecraft:eye_armor_trim_smithing_template", + "weight": 1 + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/stronghold_crossing.json b/src/JavaGen/data/lootTable/stronghold_crossing.json new file mode 100644 index 0000000..6257570 --- /dev/null +++ b/src/JavaGen/data/lootTable/stronghold_crossing.json @@ -0,0 +1,131 @@ +{ + "pools": [ + { + "rolls": { + "min": 1, + "max": 4 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "weight": 50 + }, + { + "type": "item", + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 25 + }, + { + "type": "item", + "name": "minecraft:redstone", + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 9 + } + } + ], + "weight": 25 + }, + { + "type": "item", + "name": "minecraft:coal", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 8 + } + } + ], + "weight": 50 + }, + { + "type": "item", + "name": "minecraft:bread", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 75 + }, + { + "type": "item", + "name": "minecraft:apple", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 75 + }, + { + "type": "item", + "name": "minecraft:iron_pickaxe", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 6, + "functions": [ + { + "function": "enchant_with_levels", + "levels": 30, + "treasure": true + } + ] + }, + { + "type": "item", + "name": "minecraft:dye", + "weight": 75, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_data", + "data": 0 + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/stronghold_library.json b/src/JavaGen/data/lootTable/stronghold_library.json new file mode 100644 index 0000000..9a1ecc5 --- /dev/null +++ b/src/JavaGen/data/lootTable/stronghold_library.json @@ -0,0 +1,72 @@ +{ + "pools": [ + { + "rolls": { + "min": 2, + "max": 10 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:book", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 100 + }, + { + "type": "item", + "name": "minecraft:paper", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 7 + } + } + ], + "weight": 100 + }, + { + "type": "item", + "name": "minecraft:map", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:compass", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 60, + "functions": [ + { + "function": "enchant_with_levels", + "levels": 30, + "treasure": true + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:eye_armor_trim_smithing_template", + "weight": 1 + } + ] + } + ] +} diff --git a/src/JavaGen/data/lootTable/underwater_ruin_big.json b/src/JavaGen/data/lootTable/underwater_ruin_big.json new file mode 100644 index 0000000..b6c7be5 --- /dev/null +++ b/src/JavaGen/data/lootTable/underwater_ruin_big.json @@ -0,0 +1,110 @@ +{ + "pools": [ + { + "rolls": { + "min": 2, + "max": 8 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:coal", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:gold_nugget", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:emerald", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:wheat", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 3 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:golden_apple", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 5, + "functions": [ + { + "function": "enchant_randomly" + } + ] + }, + { + "type": "item", + "name": "minecraft:leather_chestplate", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:golden_helmet", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:fishing_rod", + "weight": 5, + "functions": [ + { + "function": "enchant_randomly" + } + ] + }, + { + "type": "item", + "name": "minecraft:map", + "weight": 10, + "functions": [ + { + "function": "exploration_map", + "destination": "buriedtreasure" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/underwater_ruin_small.json b/src/JavaGen/data/lootTable/underwater_ruin_small.json new file mode 100644 index 0000000..1d13ccc --- /dev/null +++ b/src/JavaGen/data/lootTable/underwater_ruin_small.json @@ -0,0 +1,91 @@ +{ + "pools": [ + { + "rolls": { + "min": 2, + "max": 8 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:coal", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:stone_axe", + "weight": 2 + }, + { + "type": "item", + "name": "minecraft:rotten_flesh", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:emerald", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:wheat", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 3 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:leather_chestplate", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:golden_helmet", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:fishing_rod", + "weight": 5, + "functions": [ + { + "function": "enchant_randomly" + } + ] + }, + { + "type": "item", + "name": "minecraft:map", + "weight": 5, + "functions": [ + { + "function": "exploration_map", + "destination": "buriedtreasure" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_armorer.json b/src/JavaGen/data/lootTable/village/village_armorer.json new file mode 100644 index 0000000..72ed709 --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_armorer.json @@ -0,0 +1,48 @@ +{ + "pools": [ + { + "rolls": { + "min": 1, + "max": 5 + }, + "entries": [ + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:iron_ingot" + }, + { + "type": "item", + "weight": 4, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:bread" + }, + { + "type": "item", + "name": "minecraft:iron_helmet" + }, + { + "type": "item", + "name": "minecraft:emerald" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_butcher.json b/src/JavaGen/data/lootTable/village/village_butcher.json new file mode 100644 index 0000000..5f0adc7 --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_butcher.json @@ -0,0 +1,86 @@ +{ + "pools": [ + { + "rolls": { + "min": 1, + "max": 5 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:emerald" + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:porkchop" + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:wheat" + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:beef" + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:muttonRaw" + }, + { + "type": "item", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:coal" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_cartographer.json b/src/JavaGen/data/lootTable/village/village_cartographer.json new file mode 100644 index 0000000..4488ac9 --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_cartographer.json @@ -0,0 +1,77 @@ +{ + "pools": [ + { + "rolls": { + "min": 1, + "max": 5 + }, + "entries": [ + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:map" + }, + { + "type": "item", + "weight": 15, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "name": "minecraft:paper" + }, + { + "type": "item", + "weight": 5, + "name": "minecraft:compass" + }, + { + "type": "item", + "weight": 15, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:bread" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "set_data", + "data": 0 + } + ], + "name": "minecraft:sapling" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_desert_house.json b/src/JavaGen/data/lootTable/village/village_desert_house.json new file mode 100644 index 0000000..0f3bfaf --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_desert_house.json @@ -0,0 +1,99 @@ +{ + "pools": [ + { + "rolls": { + "min": 3, + "max": 8 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:clay_ball" + }, + { + "type": "item", + "functions": [ + { + "function": "set_data", + "data": 2 + } + ], + "name": "minecraft:dye" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:cactus" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 7 + } + } + ], + "name": "minecraft:wheat" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:bread" + }, + { + "type": "item", + "name": "minecraft:book" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:deadbush" + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:emerald" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_fletcher.json b/src/JavaGen/data/lootTable/village/village_fletcher.json new file mode 100644 index 0000000..6765ace --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_fletcher.json @@ -0,0 +1,87 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "rolls": { + "min": 1.0, + "max": 5.0 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:emerald" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1.0, + "max": 3.0 + } + } + ], + "name": "minecraft:arrow" + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1.0, + "max": 3.0 + } + } + ], + "name": "minecraft:feather" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1.0, + "max": 3.0 + } + } + ], + "name": "minecraft:egg" + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1.0, + "max": 3.0 + } + } + ], + "name": "minecraft:flint" + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1.0, + "max": 3.0 + } + } + ], + "name": "minecraft:stick" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_mason.json b/src/JavaGen/data/lootTable/village/village_mason.json new file mode 100644 index 0000000..6a2220c --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_mason.json @@ -0,0 +1,72 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "rolls": { + "min": 1, + "max": 5 + }, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:clay_ball" + }, + { + "type": "item", + "name": "minecraft:flower_pot" + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:stone" + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:stonebrick" + }, + { + "type": "item", + "weight": 4, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:bread" + }, + { + "type": "item", + "functions": [ + { + "function": "minecraft:set_data", + "data": 11 + } + ], + "name": "minecraft:dye" + }, + { + "type": "item", + "name": "minecraft:smooth_stone" + }, + { + "type": "item", + "name": "minecraft:emerald" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_plains_house.json b/src/JavaGen/data/lootTable/village/village_plains_house.json new file mode 100644 index 0000000..6965c71 --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_plains_house.json @@ -0,0 +1,123 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "rolls": { + "min": 3, + "max": 8 + }, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:gold_nugget" + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:yellow_flower" + }, + { + "type": "item", + "functions": [ + { + "function": "minecraft:set_data", + "data": 0 + } + ], + "name": "minecraft:red_flower" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 7 + } + } + ], + "name": "minecraft:potato" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:bread" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "name": "minecraft:apple" + }, + { + "type": "item", + "name": "minecraft:book" + }, + { + "type": "item", + "name": "minecraft:feather" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:emerald" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_data", + "data": 0 + } + ], + "name": "minecraft:sapling" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_savanna_house.json b/src/JavaGen/data/lootTable/village/village_savanna_house.json new file mode 100644 index 0000000..62c105d --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_savanna_house.json @@ -0,0 +1,129 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "rolls": { + "min": 3, + "max": 8 + }, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:gold_nugget" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "minecraft:set_data", + "data": 1 + } + ], + "name": "minecraft:tallgrass" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "minecraft:set_data", + "data": 2 + } + ], + "name": "minecraft:double_plant" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:bread" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "name": "minecraft:wheat_seeds" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:emerald" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:set_data", + "data": 4 + } + ], + "name": "minecraft:sapling" + }, + { + "type": "item", + "name": "minecraft:saddle" + }, + { + "type": "item", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 2 + } + } + ], + "name": "minecraft:torch" + }, + { + "type": "item", + "name": "minecraft:bucket" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_shepherd.json b/src/JavaGen/data/lootTable/village/village_shepherd.json new file mode 100644 index 0000000..600935b --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_shepherd.json @@ -0,0 +1,125 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "rolls": { + "min": 1, + "max": 5 + }, + "entries": [ + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 8 + } + }, + { + "function": "set_data", + "data": 0 + } + ], + "name": "minecraft:wool" + }, + { + "type": "item", + "weight": 3, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_data", + "data": 15 + } + ], + "name": "minecraft:wool" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_data", + "data": 7 + } + ], + "name": "minecraft:wool" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_data", + "data": 12 + } + ], + "name": "minecraft:wool" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + }, + { + "function": "set_data", + "data": 8 + } + ], + "name": "minecraft:wool" + }, + { + "type": "item", + "name": "minecraft:emerald" + }, + { + "type": "item", + "name": "minecraft:shears" + }, + { + "type": "item", + "weight": 6, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 6 + } + } + ], + "name": "minecraft:wheat" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_snowy_house.json b/src/JavaGen/data/lootTable/village/village_snowy_house.json new file mode 100644 index 0000000..6fa1e7a --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_snowy_house.json @@ -0,0 +1,113 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "rolls": { + "min": 3, + "max": 8 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:blue_ice" + }, + { + "type": "item", + "weight": 4, + "name": "minecraft:snow" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 7 + } + } + ], + "name": "minecraft:potato" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:bread" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "name": "minecraft:beetroot_seeds" + }, + { + "type": "item", + "name": "minecraft:beetroot_soup" + }, + { + "type": "item", + "name": "minecraft:furnace" + }, + { + "type": "item", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:emerald" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 7 + } + } + ], + "name": "minecraft:snowball" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:coal" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_taiga_house.json b/src/JavaGen/data/lootTable/village/village_taiga_house.json new file mode 100644 index 0000000..45d2eb5 --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_taiga_house.json @@ -0,0 +1,153 @@ +{ + "pools": [ + { + "rolls": { + "min": 3, + "max": 8 + }, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "name": "minecraft:iron_nugget" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_data", + "data": 2 + } + ], + "name": "minecraft:tallgrass" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_data", + "data": 3 + } + ], + "name": "minecraft:double_plant" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 7 + } + } + ], + "name": "minecraft:potato" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:bread" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "name": "minecraft:pumpkin_seeds" + }, + { + "type": "item", + "name": "minecraft:pumpkin_pie" + }, + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:emerald" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + }, + { + "function": "set_data", + "data": 1 + } + ], + "name": "minecraft:sapling" + }, + { + "type": "item", + "functions": [ + { + "function": "set_data", + "data": 1 + } + ], + "name": "minecraft:sign" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + }, + { + "function": "set_data", + "data": 1 + } + ], + "name": "minecraft:log" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_tannery.json b/src/JavaGen/data/lootTable/village/village_tannery.json new file mode 100644 index 0000000..bfc0bf1 --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_tannery.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": { + "min": 1, + "max": 5 + }, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:leather" + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:leather_chestplate" + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:leather_boots" + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:leather_helmet" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:bread" + }, + { + "type": "item", + "weight": 2, + "name": "minecraft:leather_leggings" + }, + { + "type": "item", + "name": "minecraft:saddle" + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:emerald" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_temple.json b/src/JavaGen/data/lootTable/village/village_temple.json new file mode 100644 index 0000000..d669e95 --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_temple.json @@ -0,0 +1,97 @@ +{ + "pools": [ + { + "rolls": { + "min": 3, + "max": 8 + }, + "entries": [ + { + "type": "item", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:redstone" + }, + { + "type": "item", + "weight": 7, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:bread" + }, + { + "type": "item", + "weight": 7, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:rotten_flesh" + }, + { + "type": "item", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + }, + { + "function": "set_data", + "data": 4 + } + ], + "name": "minecraft:dye" + }, + { + "type": "item", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:gold_ingot" + }, + { + "type": "item", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ], + "name": "minecraft:emerald" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_toolsmith.json b/src/JavaGen/data/lootTable/village/village_toolsmith.json new file mode 100644 index 0000000..8a2c20e --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_toolsmith.json @@ -0,0 +1,103 @@ +{ + "pools": [ + { + "rolls": { + "min": 3, + "max": 8 + }, + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:diamond" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "name": "minecraft:iron_ingot" + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:gold_ingot" + }, + { + "type": "item", + "weight": 15, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:bread" + }, + { + "type": "item", + "weight": 5, + "name": "minecraft:iron_pickaxe" + }, + { + "type": "item", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:coal" + }, + { + "type": "item", + "weight": 20, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:stick" + }, + { + "type": "item", + "weight": 5, + "name": "minecraft:iron_shovel" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village/village_weaponsmith.json b/src/JavaGen/data/lootTable/village/village_weaponsmith.json new file mode 100644 index 0000000..60d90b9 --- /dev/null +++ b/src/JavaGen/data/lootTable/village/village_weaponsmith.json @@ -0,0 +1,161 @@ +{ + "pools": [ + { + "rolls": { + "min": 3, + "max": 8 + }, + "entries": [ + { + "type": "item", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:diamond" + }, + { + "type": "item", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "name": "minecraft:iron_ingot" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:gold_ingot" + }, + { + "type": "item", + "weight": 15, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:bread" + }, + { + "type": "item", + "weight": 15, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "name": "minecraft:apple" + }, + { + "type": "item", + "weight": 5, + "name": "minecraft:iron_pickaxe" + }, + { + "type": "item", + "weight": 5, + "name": "minecraft:iron_sword" + }, + { + "type": "item", + "weight": 5, + "name": "minecraft:iron_chestplate" + }, + { + "type": "item", + "weight": 5, + "name": "minecraft:iron_helmet" + }, + { + "type": "item", + "weight": 5, + "name": "minecraft:iron_leggings" + }, + { + "type": "item", + "weight": 5, + "name": "minecraft:iron_boots" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 7 + } + } + ], + "name": "minecraft:obsidian" + }, + { + "type": "item", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 7 + } + }, + { + "function": "set_data", + "data": 0 + } + ], + "name": "minecraft:sapling" + }, + { + "type": "item", + "weight": 3, + "name": "minecraft:saddle" + }, + { + "type": "item", + "name": "minecraft:horsearmoriron" + }, + { + "type": "item", + "name": "minecraft:horsearmorgold" + }, + { + "type": "item", + "name": "minecraft:horsearmordiamond" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village_blacksmith.json b/src/JavaGen/data/lootTable/village_blacksmith.json new file mode 100644 index 0000000..9fb268a --- /dev/null +++ b/src/JavaGen/data/lootTable/village_blacksmith.json @@ -0,0 +1,160 @@ +{ + "pools": [ + { + "rolls": { + "min": 3, + "max": 8 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:diamond", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 3 + }, + { + "type": "item", + "name": "minecraft:iron_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 5 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:gold_ingot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:bread", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:apple", + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:iron_pickaxe", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:iron_sword", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:iron_chestplate", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:iron_helmet", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:iron_leggings", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:iron_boots", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:obsidian", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 7 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:sapling", + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 7 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:saddle", + "weight": 3 + }, + { + "type": "item", + "name": "minecraft:horsearmoriron", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:horsearmorgold", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:horsearmordiamond", + "weight": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/village_two_room_house.json b/src/JavaGen/data/lootTable/village_two_room_house.json new file mode 100644 index 0000000..e097a7e --- /dev/null +++ b/src/JavaGen/data/lootTable/village_two_room_house.json @@ -0,0 +1,93 @@ +{ + "pools": [ + { + "rolls": { + "min": 6, + "max": 8 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:potato", + "functions": [ + { + "function": "set_count", + "count": { + "min": 5, + "max": 8 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:carrot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 8 + } + } + ], + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:wheat", + "functions": [ + { + "function": "set_count", + "count": { + "min": 8, + "max": 12 + } + } + ], + "weight": 15 + }, + { + "type": "item", + "name": "minecraft:wheat_seeds", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:beetroot", + "functions": [ + { + "function": "set_count", + "count": { + "min": 5, + "max": 8 + } + } + ], + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:wooden_hoe", + "functions": [ + { + "function": "set_count", + "count": 1 + } + ], + "weight": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/src/JavaGen/data/lootTable/woodland_mansion.json b/src/JavaGen/data/lootTable/woodland_mansion.json new file mode 100644 index 0000000..c52b930 --- /dev/null +++ b/src/JavaGen/data/lootTable/woodland_mansion.json @@ -0,0 +1,273 @@ +{ + "pools": [ + { + "rolls": { + "min": 1, + "max": 3 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:lead", + "weight": 100 + }, + { + "type": "item", + "name": "minecraft:golden_apple", + "weight": 75 + }, + { + "type": "item", + "name": "minecraft:appleEnchanted", + "weight": 10 + }, + { + "type": "item", + "name": "minecraft:record_13", + "weight": 75 + }, + { + "type": "item", + "name": "minecraft:record_cat", + "weight": 75 + }, + { + "type": "item", + "name": "minecraft:name_tag", + "weight": 100 + }, + { + "type": "item", + "name": "minecraft:chainmail_chestplate", + "weight": 50 + }, + { + "type": "item", + "name": "minecraft:diamond_hoe", + "weight": 75 + }, + { + "type": "item", + "name": "minecraft:diamond_chestplate", + "weight": 25 + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 60, + "functions": [ + { + "function": "enchant_randomly", + "treasure": true + } + ] + } + ] + }, + { + "rolls": { + "min": 1, + "max": 4 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:iron_ingot", + "weight": 50, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:gold_ingot", + "weight": 25, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:bread", + "weight": 100 + }, + { + "type": "item", + "name": "minecraft:wheat", + "weight": 100, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:bucket", + "weight": 50 + }, + { + "type": "item", + "name": "minecraft:redstone", + "weight": 75, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:coal", + "weight": 75, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:melon_seeds", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ], + "weight": 50 + }, + { + "type": "item", + "name": "minecraft:pumpkin_seeds", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ], + "weight": 50 + }, + { + "type": "item", + "name": "minecraft:beetroot_seeds", + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ], + "weight": 50 + } + ] + }, + { + "rolls": 3, + "entries": [ + { + "type": "item", + "name": "minecraft:bone", + "weight": 50, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:gunpowder", + "weight": 50, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:rotten_flesh", + "weight": 50, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:string", + "weight": 50, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 8 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "empty", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:vex_armor_trim_smithing_template", + "weight": 1 + } + ] + } + ] +} diff --git a/src/JavaGen/data/mappings.json b/src/JavaGen/data/mappings.json new file mode 100644 index 0000000..8d58a12 --- /dev/null +++ b/src/JavaGen/data/mappings.json @@ -0,0 +1,300925 @@ +{ + "minecraft:air": { + "bedrock_identifier": "minecraft:air", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": true + }, + "minecraft:stone": { + "bedrock_identifier": "minecraft:stone", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:granite": { + "bedrock_identifier": "minecraft:granite", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:polished_granite": { + "bedrock_identifier": "minecraft:polished_granite", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:diorite": { + "bedrock_identifier": "minecraft:diorite", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:polished_diorite": { + "bedrock_identifier": "minecraft:polished_diorite", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:andesite": { + "bedrock_identifier": "minecraft:andesite", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:polished_andesite": { + "bedrock_identifier": "minecraft:polished_andesite", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:grass_block[snowy=true]": { + "bedrock_identifier": "minecraft:grass_block", + "block_hardness": 0.6, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:grass_block[snowy=false]": { + "bedrock_identifier": "minecraft:grass_block", + "block_hardness": 0.6, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:dirt": { + "bedrock_identifier": "minecraft:dirt", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "dirt_type": "normal" + } + }, + "minecraft:coarse_dirt": { + "bedrock_identifier": "minecraft:dirt", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "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, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:cobblestone": { + "bedrock_identifier": "minecraft:cobblestone", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:oak_planks": { + "bedrock_identifier": "minecraft:oak_planks", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:spruce_planks": { + "bedrock_identifier": "minecraft:spruce_planks", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:birch_planks": { + "bedrock_identifier": "minecraft:birch_planks", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:jungle_planks": { + "bedrock_identifier": "minecraft:jungle_planks", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:acacia_planks": { + "bedrock_identifier": "minecraft:acacia_planks", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:cherry_planks": { + "bedrock_identifier": "minecraft:cherry_planks", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:dark_oak_planks": { + "bedrock_identifier": "minecraft:dark_oak_planks", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:mangrove_planks": { + "bedrock_identifier": "minecraft:mangrove_planks", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:bamboo_planks": { + "bedrock_identifier": "minecraft:bamboo_planks", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:bamboo_mosaic": { + "bedrock_identifier": "minecraft:bamboo_mosaic", + "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, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age_bit": false, + "sapling_type": "oak" + } + }, + "minecraft:oak_sapling[stage=1]": { + "bedrock_identifier": "minecraft:sapling", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age_bit": true, + "sapling_type": "oak" + } + }, + "minecraft:spruce_sapling[stage=0]": { + "bedrock_identifier": "minecraft:sapling", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age_bit": false, + "sapling_type": "spruce" + } + }, + "minecraft:spruce_sapling[stage=1]": { + "bedrock_identifier": "minecraft:sapling", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age_bit": true, + "sapling_type": "spruce" + } + }, + "minecraft:birch_sapling[stage=0]": { + "bedrock_identifier": "minecraft:sapling", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age_bit": false, + "sapling_type": "birch" + } + }, + "minecraft:birch_sapling[stage=1]": { + "bedrock_identifier": "minecraft:sapling", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age_bit": true, + "sapling_type": "birch" + } + }, + "minecraft:jungle_sapling[stage=0]": { + "bedrock_identifier": "minecraft:sapling", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age_bit": false, + "sapling_type": "jungle" + } + }, + "minecraft:jungle_sapling[stage=1]": { + "bedrock_identifier": "minecraft:sapling", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age_bit": true, + "sapling_type": "jungle" + } + }, + "minecraft:acacia_sapling[stage=0]": { + "bedrock_identifier": "minecraft:sapling", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age_bit": false, + "sapling_type": "acacia" + } + }, + "minecraft:acacia_sapling[stage=1]": { + "bedrock_identifier": "minecraft:sapling", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age_bit": true, + "sapling_type": "acacia" + } + }, + "minecraft:cherry_sapling[stage=0]": { + "bedrock_identifier": "minecraft:cherry_sapling", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age_bit": false + } + }, + "minecraft:cherry_sapling[stage=1]": { + "bedrock_identifier": "minecraft:cherry_sapling", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age_bit": true + } + }, + "minecraft:dark_oak_sapling[stage=0]": { + "bedrock_identifier": "minecraft:sapling", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age_bit": false, + "sapling_type": "dark_oak" + } + }, + "minecraft:dark_oak_sapling[stage=1]": { + "bedrock_identifier": "minecraft:sapling", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age_bit": true, + "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, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "infiniburn_bit": false + } + }, + "minecraft:water[level=0]": { + "bedrock_identifier": "minecraft:water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 0 + } + }, + "minecraft:water[level=1]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 1 + } + }, + "minecraft:water[level=2]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 2 + } + }, + "minecraft:water[level=3]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 3 + } + }, + "minecraft:water[level=4]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 4 + } + }, + "minecraft:water[level=5]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 5 + } + }, + "minecraft:water[level=6]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 6 + } + }, + "minecraft:water[level=7]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 7 + } + }, + "minecraft:water[level=8]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 8 + } + }, + "minecraft:water[level=9]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 9 + } + }, + "minecraft:water[level=10]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 10 + } + }, + "minecraft:water[level=11]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 11 + } + }, + "minecraft:water[level=12]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 12 + } + }, + "minecraft:water[level=13]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 13 + } + }, + "minecraft:water[level=14]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 14 + } + }, + "minecraft:water[level=15]": { + "bedrock_identifier": "minecraft:flowing_water", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 15 + } + }, + "minecraft:lava[level=0]": { + "bedrock_identifier": "minecraft:lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 0 + } + }, + "minecraft:lava[level=1]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 1 + } + }, + "minecraft:lava[level=2]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 2 + } + }, + "minecraft:lava[level=3]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 3 + } + }, + "minecraft:lava[level=4]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 4 + } + }, + "minecraft:lava[level=5]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 5 + } + }, + "minecraft:lava[level=6]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 6 + } + }, + "minecraft:lava[level=7]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 7 + } + }, + "minecraft:lava[level=8]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 8 + } + }, + "minecraft:lava[level=9]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 9 + } + }, + "minecraft:lava[level=10]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 10 + } + }, + "minecraft:lava[level=11]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 11 + } + }, + "minecraft:lava[level=12]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 12 + } + }, + "minecraft:lava[level=13]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 13 + } + }, + "minecraft:lava[level=14]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 14 + } + }, + "minecraft:lava[level=15]": { + "bedrock_identifier": "minecraft:flowing_lava", + "block_hardness": 100.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "liquid_depth": 15 + } + }, + "minecraft:sand": { + "bedrock_identifier": "minecraft:sand", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "sand_type": "normal" + } + }, + "minecraft:suspicious_sand[dusted=0]": { + "bedrock_identifier": "minecraft:suspicious_sand", + "block_hardness": 0.25, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "brushed_progress": 0, + "hanging": false + } + }, + "minecraft:suspicious_sand[dusted=1]": { + "bedrock_identifier": "minecraft:suspicious_sand", + "block_hardness": 0.25, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "brushed_progress": 1, + "hanging": false + } + }, + "minecraft:suspicious_sand[dusted=2]": { + "bedrock_identifier": "minecraft:suspicious_sand", + "block_hardness": 0.25, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "brushed_progress": 2, + "hanging": false + } + }, + "minecraft:suspicious_sand[dusted=3]": { + "bedrock_identifier": "minecraft:suspicious_sand", + "block_hardness": 0.25, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "brushed_progress": 3, + "hanging": false + } + }, + "minecraft:red_sand": { + "bedrock_identifier": "minecraft:sand", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "sand_type": "red" + } + }, + "minecraft:gravel": { + "bedrock_identifier": "minecraft:gravel", + "block_hardness": 0.6, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:suspicious_gravel[dusted=0]": { + "bedrock_identifier": "minecraft:suspicious_gravel", + "block_hardness": 0.25, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "brushed_progress": 0, + "hanging": false + } + }, + "minecraft:suspicious_gravel[dusted=1]": { + "bedrock_identifier": "minecraft:suspicious_gravel", + "block_hardness": 0.25, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "brushed_progress": 1, + "hanging": false + } + }, + "minecraft:suspicious_gravel[dusted=2]": { + "bedrock_identifier": "minecraft:suspicious_gravel", + "block_hardness": 0.25, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "brushed_progress": 2, + "hanging": false + } + }, + "minecraft:suspicious_gravel[dusted=3]": { + "bedrock_identifier": "minecraft:suspicious_gravel", + "block_hardness": 0.25, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "brushed_progress": 3, + "hanging": false + } + }, + "minecraft:gold_ore": { + "bedrock_identifier": "minecraft:gold_ore", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:deepslate_gold_ore": { + "bedrock_identifier": "minecraft:deepslate_gold_ore", + "block_hardness": 4.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:iron_ore": { + "bedrock_identifier": "minecraft:iron_ore", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:deepslate_iron_ore": { + "bedrock_identifier": "minecraft:deepslate_iron_ore", + "block_hardness": 4.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:coal_ore": { + "bedrock_identifier": "minecraft:coal_ore", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:deepslate_coal_ore": { + "bedrock_identifier": "minecraft:deepslate_coal_ore", + "block_hardness": 4.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:nether_gold_ore": { + "bedrock_identifier": "minecraft:nether_gold_ore", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:oak_log[axis=x]": { + "bedrock_identifier": "minecraft:oak_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:oak_log[axis=y]": { + "bedrock_identifier": "minecraft:oak_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:oak_log[axis=z]": { + "bedrock_identifier": "minecraft:oak_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:spruce_log[axis=x]": { + "bedrock_identifier": "minecraft:spruce_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:spruce_log[axis=y]": { + "bedrock_identifier": "minecraft:spruce_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:spruce_log[axis=z]": { + "bedrock_identifier": "minecraft:spruce_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:birch_log[axis=x]": { + "bedrock_identifier": "minecraft:birch_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:birch_log[axis=y]": { + "bedrock_identifier": "minecraft:birch_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:birch_log[axis=z]": { + "bedrock_identifier": "minecraft:birch_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:jungle_log[axis=x]": { + "bedrock_identifier": "minecraft:jungle_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:jungle_log[axis=y]": { + "bedrock_identifier": "minecraft:jungle_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:jungle_log[axis=z]": { + "bedrock_identifier": "minecraft:jungle_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:acacia_log[axis=x]": { + "bedrock_identifier": "minecraft:acacia_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:acacia_log[axis=y]": { + "bedrock_identifier": "minecraft:acacia_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:acacia_log[axis=z]": { + "bedrock_identifier": "minecraft:acacia_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:cherry_log[axis=x]": { + "bedrock_identifier": "minecraft:cherry_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:cherry_log[axis=y]": { + "bedrock_identifier": "minecraft:cherry_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:cherry_log[axis=z]": { + "bedrock_identifier": "minecraft:cherry_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:dark_oak_log[axis=x]": { + "bedrock_identifier": "minecraft:dark_oak_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:dark_oak_log[axis=y]": { + "bedrock_identifier": "minecraft:dark_oak_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:dark_oak_log[axis=z]": { + "bedrock_identifier": "minecraft:dark_oak_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "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, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:muddy_mangrove_roots[axis=y]": { + "bedrock_identifier": "minecraft:muddy_mangrove_roots", + "block_hardness": 0.7, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:muddy_mangrove_roots[axis=z]": { + "bedrock_identifier": "minecraft:muddy_mangrove_roots", + "block_hardness": 0.7, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:bamboo_block[axis=x]": { + "bedrock_identifier": "minecraft:bamboo_block", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:bamboo_block[axis=y]": { + "bedrock_identifier": "minecraft:bamboo_block", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:bamboo_block[axis=z]": { + "bedrock_identifier": "minecraft:bamboo_block", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_spruce_log[axis=x]": { + "bedrock_identifier": "minecraft:stripped_spruce_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_spruce_log[axis=y]": { + "bedrock_identifier": "minecraft:stripped_spruce_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_spruce_log[axis=z]": { + "bedrock_identifier": "minecraft:stripped_spruce_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_birch_log[axis=x]": { + "bedrock_identifier": "minecraft:stripped_birch_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_birch_log[axis=y]": { + "bedrock_identifier": "minecraft:stripped_birch_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_birch_log[axis=z]": { + "bedrock_identifier": "minecraft:stripped_birch_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_jungle_log[axis=x]": { + "bedrock_identifier": "minecraft:stripped_jungle_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_jungle_log[axis=y]": { + "bedrock_identifier": "minecraft:stripped_jungle_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_jungle_log[axis=z]": { + "bedrock_identifier": "minecraft:stripped_jungle_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_acacia_log[axis=x]": { + "bedrock_identifier": "minecraft:stripped_acacia_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_acacia_log[axis=y]": { + "bedrock_identifier": "minecraft:stripped_acacia_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_acacia_log[axis=z]": { + "bedrock_identifier": "minecraft:stripped_acacia_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_cherry_log[axis=x]": { + "bedrock_identifier": "minecraft:stripped_cherry_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_cherry_log[axis=y]": { + "bedrock_identifier": "minecraft:stripped_cherry_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_cherry_log[axis=z]": { + "bedrock_identifier": "minecraft:stripped_cherry_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_dark_oak_log[axis=x]": { + "bedrock_identifier": "minecraft:stripped_dark_oak_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_dark_oak_log[axis=y]": { + "bedrock_identifier": "minecraft:stripped_dark_oak_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_dark_oak_log[axis=z]": { + "bedrock_identifier": "minecraft:stripped_dark_oak_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_oak_log[axis=x]": { + "bedrock_identifier": "minecraft:stripped_oak_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_oak_log[axis=y]": { + "bedrock_identifier": "minecraft:stripped_oak_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_oak_log[axis=z]": { + "bedrock_identifier": "minecraft:stripped_oak_log", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "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:stripped_bamboo_block[axis=x]": { + "bedrock_identifier": "minecraft:stripped_bamboo_block", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_bamboo_block[axis=y]": { + "bedrock_identifier": "minecraft:stripped_bamboo_block", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_bamboo_block[axis=z]": { + "bedrock_identifier": "minecraft:stripped_bamboo_block", + "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:oak_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:oak_wood[axis=y]": { + "bedrock_identifier": "minecraft:oak_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:oak_wood[axis=z]": { + "bedrock_identifier": "minecraft:oak_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:spruce_wood[axis=x]": { + "bedrock_identifier": "minecraft:spruce_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:spruce_wood[axis=y]": { + "bedrock_identifier": "minecraft:spruce_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:spruce_wood[axis=z]": { + "bedrock_identifier": "minecraft:spruce_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:birch_wood[axis=x]": { + "bedrock_identifier": "minecraft:birch_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:birch_wood[axis=y]": { + "bedrock_identifier": "minecraft:birch_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:birch_wood[axis=z]": { + "bedrock_identifier": "minecraft:birch_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:jungle_wood[axis=x]": { + "bedrock_identifier": "minecraft:jungle_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:jungle_wood[axis=y]": { + "bedrock_identifier": "minecraft:jungle_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:jungle_wood[axis=z]": { + "bedrock_identifier": "minecraft:jungle_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:acacia_wood[axis=x]": { + "bedrock_identifier": "minecraft:acacia_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:acacia_wood[axis=y]": { + "bedrock_identifier": "minecraft:acacia_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:acacia_wood[axis=z]": { + "bedrock_identifier": "minecraft:acacia_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:cherry_wood[axis=x]": { + "bedrock_identifier": "minecraft:cherry_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "stripped_bit": false, + "pillar_axis": "x" + } + }, + "minecraft:cherry_wood[axis=y]": { + "bedrock_identifier": "minecraft:cherry_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "stripped_bit": false, + "pillar_axis": "y" + } + }, + "minecraft:cherry_wood[axis=z]": { + "bedrock_identifier": "minecraft:cherry_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "stripped_bit": false, + "pillar_axis": "z" + } + }, + "minecraft:dark_oak_wood[axis=x]": { + "bedrock_identifier": "minecraft:dark_oak_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:dark_oak_wood[axis=y]": { + "bedrock_identifier": "minecraft:dark_oak_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:dark_oak_wood[axis=z]": { + "bedrock_identifier": "minecraft:dark_oak_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "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:stripped_oak_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_oak_wood[axis=y]": { + "bedrock_identifier": "minecraft:stripped_oak_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_oak_wood[axis=z]": { + "bedrock_identifier": "minecraft:stripped_oak_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_spruce_wood[axis=x]": { + "bedrock_identifier": "minecraft:stripped_spruce_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_spruce_wood[axis=y]": { + "bedrock_identifier": "minecraft:stripped_spruce_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_spruce_wood[axis=z]": { + "bedrock_identifier": "minecraft:stripped_spruce_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_birch_wood[axis=x]": { + "bedrock_identifier": "minecraft:stripped_birch_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_birch_wood[axis=y]": { + "bedrock_identifier": "minecraft:stripped_birch_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_birch_wood[axis=z]": { + "bedrock_identifier": "minecraft:stripped_birch_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_jungle_wood[axis=x]": { + "bedrock_identifier": "minecraft:stripped_jungle_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_jungle_wood[axis=y]": { + "bedrock_identifier": "minecraft:stripped_jungle_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_jungle_wood[axis=z]": { + "bedrock_identifier": "minecraft:stripped_jungle_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_acacia_wood[axis=x]": { + "bedrock_identifier": "minecraft:stripped_acacia_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_acacia_wood[axis=y]": { + "bedrock_identifier": "minecraft:stripped_acacia_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_acacia_wood[axis=z]": { + "bedrock_identifier": "minecraft:stripped_acacia_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_cherry_wood[axis=x]": { + "bedrock_identifier": "minecraft:stripped_cherry_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_cherry_wood[axis=y]": { + "bedrock_identifier": "minecraft:stripped_cherry_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_cherry_wood[axis=z]": { + "bedrock_identifier": "minecraft:stripped_cherry_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_dark_oak_wood[axis=x]": { + "bedrock_identifier": "minecraft:stripped_dark_oak_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_dark_oak_wood[axis=y]": { + "bedrock_identifier": "minecraft:stripped_dark_oak_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_dark_oak_wood[axis=z]": { + "bedrock_identifier": "minecraft:stripped_dark_oak_wood", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "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:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=1,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=1,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=1,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=2,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=2,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=2,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=2,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=3,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=3,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=3,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=3,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=4,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=4,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=4,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=4,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=5,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=5,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=5,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=5,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=6,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=6,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=6,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=6,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=7,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=7,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=7,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:oak_leaves[distance=7,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=1,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=1,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=1,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=1,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=2,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=2,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=2,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=2,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=3,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=3,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=3,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=3,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=4,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=4,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=4,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=4,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=5,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=5,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=5,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=5,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=6,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=6,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=6,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=6,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=7,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=7,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=7,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:spruce_leaves[distance=7,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=1,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=1,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=1,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=1,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=2,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=2,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=2,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=2,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=3,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=3,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=3,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=3,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=4,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=4,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=4,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=4,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=5,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=5,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=5,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=5,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=6,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=6,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=6,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=6,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=7,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=7,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=7,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:birch_leaves[distance=7,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=1,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=1,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=1,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=1,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=2,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=2,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=2,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=2,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=3,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=3,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=3,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=3,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=4,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=4,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=4,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=4,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=5,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=5,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=5,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=5,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=6,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=6,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=6,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=6,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=7,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=7,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=7,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:jungle_leaves[distance=7,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=1,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=1,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=1,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=1,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=2,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=2,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=2,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=2,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=3,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=3,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=3,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=3,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=4,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=4,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=4,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=4,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=5,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=5,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=5,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=5,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=6,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=6,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=6,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=6,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=7,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=7,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=7,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:acacia_leaves[distance=7,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=1,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=1,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=1,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=1,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=2,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=2,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=2,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=2,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=3,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=3,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=3,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=3,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=4,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=4,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=4,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=4,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=5,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=5,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=5,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=5,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=6,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=6,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=6,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=6,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=7,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=7,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=7,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:cherry_leaves[distance=7,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=1,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=1,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=1,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=1,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=2,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=2,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=2,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=2,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=3,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=3,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=3,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=3,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=4,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=4,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=4,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=4,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=5,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=5,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=5,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=5,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=6,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=6,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=6,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=6,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=7,persistent=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=7,persistent=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=7,persistent=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:dark_oak_leaves[distance=7,persistent=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_leaves", + "block_hardness": 0.2, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": true, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "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, + "bedrock_states": { + "persistent_bit": false, + "update_bit": false + } + }, + "minecraft:sponge": { + "bedrock_identifier": "minecraft:sponge", + "block_hardness": 0.6, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "sponge_type": "dry" + } + }, + "minecraft:wet_sponge": { + "bedrock_identifier": "minecraft:sponge", + "block_hardness": 0.6, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "sponge_type": "wet" + } + }, + "minecraft:glass": { + "bedrock_identifier": "minecraft:glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:lapis_ore": { + "bedrock_identifier": "minecraft:lapis_ore", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:deepslate_lapis_ore": { + "bedrock_identifier": "minecraft:deepslate_lapis_ore", + "block_hardness": 4.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:lapis_block": { + "bedrock_identifier": "minecraft:lapis_block", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:dispenser[facing=north,triggered=true]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2, + "triggered_bit": true + } + }, + "minecraft:dispenser[facing=north,triggered=false]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2, + "triggered_bit": false + } + }, + "minecraft:dispenser[facing=east,triggered=true]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5, + "triggered_bit": true + } + }, + "minecraft:dispenser[facing=east,triggered=false]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5, + "triggered_bit": false + } + }, + "minecraft:dispenser[facing=south,triggered=true]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3, + "triggered_bit": true + } + }, + "minecraft:dispenser[facing=south,triggered=false]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3, + "triggered_bit": false + } + }, + "minecraft:dispenser[facing=west,triggered=true]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4, + "triggered_bit": true + } + }, + "minecraft:dispenser[facing=west,triggered=false]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4, + "triggered_bit": false + } + }, + "minecraft:dispenser[facing=up,triggered=true]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 1, + "triggered_bit": true + } + }, + "minecraft:dispenser[facing=up,triggered=false]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 1, + "triggered_bit": false + } + }, + "minecraft:dispenser[facing=down,triggered=true]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "triggered_bit": true + } + }, + "minecraft:dispenser[facing=down,triggered=false]": { + "bedrock_identifier": "minecraft:dispenser", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "triggered_bit": false + } + }, + "minecraft:sandstone": { + "bedrock_identifier": "minecraft:sandstone", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "sand_stone_type": "default" + } + }, + "minecraft:chiseled_sandstone": { + "bedrock_identifier": "minecraft:sandstone", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "sand_stone_type": "heiroglyphs" + } + }, + "minecraft:cut_sandstone": { + "bedrock_identifier": "minecraft:sandstone", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "sand_stone_type": "cut" + } + }, + "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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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 + }, + "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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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:note_block[instrument=bit,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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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]": { + "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:note_block[instrument=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=zombie,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=skeleton,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=creeper,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=dragon,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=wither_skeleton,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=piglin,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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=custom_head,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: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": 0, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "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": 0, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "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": 0, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "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": 0, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "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": 0, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "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": 0, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "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": 0, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "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": 0, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "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": 0, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "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": 0, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "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": 0, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "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": 0, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "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": 0, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "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": 0, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "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": 0, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "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": 1, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "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, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "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": 2, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "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, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bed_color": 5, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:lime_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": 5, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:pink_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": 6, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:gray_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": 7, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:light_gray_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": 8, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:cyan_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": 9, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:purple_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": 10, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft: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": 11, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:brown_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": 12, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:green_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": 13, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:red_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": 14, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 2 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 2 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 0 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 0 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 1 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 1 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": true, + "direction": 3 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": true, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:black_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": 15, + "bedrock_states": { + "head_piece_bit": false, + "occupied_bit": false, + "direction": 3 + } + }, + "minecraft:powered_rail[powered=true,shape=north_south,waterlogged=true]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 0 + } + }, + "minecraft:powered_rail[powered=true,shape=north_south,waterlogged=false]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 0 + } + }, + "minecraft:powered_rail[powered=true,shape=east_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 1 + } + }, + "minecraft:powered_rail[powered=true,shape=east_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 1 + } + }, + "minecraft:powered_rail[powered=true,shape=ascending_east,waterlogged=true]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 2 + } + }, + "minecraft:powered_rail[powered=true,shape=ascending_east,waterlogged=false]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 2 + } + }, + "minecraft:powered_rail[powered=true,shape=ascending_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 3 + } + }, + "minecraft:powered_rail[powered=true,shape=ascending_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 3 + } + }, + "minecraft:powered_rail[powered=true,shape=ascending_north,waterlogged=true]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 4 + } + }, + "minecraft:powered_rail[powered=true,shape=ascending_north,waterlogged=false]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 4 + } + }, + "minecraft:powered_rail[powered=true,shape=ascending_south,waterlogged=true]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 5 + } + }, + "minecraft:powered_rail[powered=true,shape=ascending_south,waterlogged=false]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 5 + } + }, + "minecraft:powered_rail[powered=false,shape=north_south,waterlogged=true]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 0 + } + }, + "minecraft:powered_rail[powered=false,shape=north_south,waterlogged=false]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 0 + } + }, + "minecraft:powered_rail[powered=false,shape=east_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 1 + } + }, + "minecraft:powered_rail[powered=false,shape=east_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 1 + } + }, + "minecraft:powered_rail[powered=false,shape=ascending_east,waterlogged=true]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 2 + } + }, + "minecraft:powered_rail[powered=false,shape=ascending_east,waterlogged=false]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 2 + } + }, + "minecraft:powered_rail[powered=false,shape=ascending_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 3 + } + }, + "minecraft:powered_rail[powered=false,shape=ascending_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 3 + } + }, + "minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=true]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 4 + } + }, + "minecraft:powered_rail[powered=false,shape=ascending_north,waterlogged=false]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 4 + } + }, + "minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=true]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 5 + } + }, + "minecraft:powered_rail[powered=false,shape=ascending_south,waterlogged=false]": { + "bedrock_identifier": "minecraft:golden_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 5 + } + }, + "minecraft:detector_rail[powered=true,shape=north_south,waterlogged=true]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 0 + } + }, + "minecraft:detector_rail[powered=true,shape=north_south,waterlogged=false]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 0 + } + }, + "minecraft:detector_rail[powered=true,shape=east_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 1 + } + }, + "minecraft:detector_rail[powered=true,shape=east_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 1 + } + }, + "minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=true]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 2 + } + }, + "minecraft:detector_rail[powered=true,shape=ascending_east,waterlogged=false]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 2 + } + }, + "minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 3 + } + }, + "minecraft:detector_rail[powered=true,shape=ascending_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 3 + } + }, + "minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=true]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 4 + } + }, + "minecraft:detector_rail[powered=true,shape=ascending_north,waterlogged=false]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 4 + } + }, + "minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=true]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 5 + } + }, + "minecraft:detector_rail[powered=true,shape=ascending_south,waterlogged=false]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 5 + } + }, + "minecraft:detector_rail[powered=false,shape=north_south,waterlogged=true]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 0 + } + }, + "minecraft:detector_rail[powered=false,shape=north_south,waterlogged=false]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 0 + } + }, + "minecraft:detector_rail[powered=false,shape=east_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 1 + } + }, + "minecraft:detector_rail[powered=false,shape=east_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 1 + } + }, + "minecraft:detector_rail[powered=false,shape=ascending_east,waterlogged=true]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 2 + } + }, + "minecraft:detector_rail[powered=false,shape=ascending_east,waterlogged=false]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 2 + } + }, + "minecraft:detector_rail[powered=false,shape=ascending_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 3 + } + }, + "minecraft:detector_rail[powered=false,shape=ascending_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 3 + } + }, + "minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 4 + } + }, + "minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 4 + } + }, + "minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 5 + } + }, + "minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false]": { + "bedrock_identifier": "minecraft:detector_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 5 + } + }, + "minecraft:sticky_piston[extended=true,facing=north]": { + "bedrock_identifier": "minecraft:sticky_piston", + "block_hardness": 1.5, + "collision_index": 6, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:sticky_piston[extended=true,facing=east]": { + "bedrock_identifier": "minecraft:sticky_piston", + "block_hardness": 1.5, + "collision_index": 7, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:sticky_piston[extended=true,facing=south]": { + "bedrock_identifier": "minecraft:sticky_piston", + "block_hardness": 1.5, + "collision_index": 8, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:sticky_piston[extended=true,facing=west]": { + "bedrock_identifier": "minecraft:sticky_piston", + "block_hardness": 1.5, + "collision_index": 9, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:sticky_piston[extended=true,facing=up]": { + "bedrock_identifier": "minecraft:sticky_piston", + "block_hardness": 1.5, + "collision_index": 10, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:sticky_piston[extended=true,facing=down]": { + "bedrock_identifier": "minecraft:sticky_piston", + "block_hardness": 1.5, + "collision_index": 11, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0 + } + }, + "minecraft:sticky_piston[extended=false,facing=north]": { + "bedrock_identifier": "minecraft:sticky_piston", + "block_hardness": 1.5, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:sticky_piston[extended=false,facing=east]": { + "bedrock_identifier": "minecraft:sticky_piston", + "block_hardness": 1.5, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:sticky_piston[extended=false,facing=south]": { + "bedrock_identifier": "minecraft:sticky_piston", + "block_hardness": 1.5, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:sticky_piston[extended=false,facing=west]": { + "bedrock_identifier": "minecraft:sticky_piston", + "block_hardness": 1.5, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:sticky_piston[extended=false,facing=up]": { + "bedrock_identifier": "minecraft:sticky_piston", + "block_hardness": 1.5, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:sticky_piston[extended=false,facing=down]": { + "bedrock_identifier": "minecraft:sticky_piston", + "block_hardness": 1.5, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0 + } + }, + "minecraft:cobweb": { + "bedrock_identifier": "minecraft:web", + "block_hardness": 4.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false + }, + "minecraft:short_grass": { + "bedrock_identifier": "minecraft:tallgrass", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "tall_grass_type": "tall" + } + }, + "minecraft:fern": { + "bedrock_identifier": "minecraft:tallgrass", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "tall_grass_type": "fern" + } + }, + "minecraft:dead_bush": { + "bedrock_identifier": "minecraft:deadbush", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true + }, + "minecraft:seagrass": { + "bedrock_identifier": "minecraft:seagrass", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "sea_grass_type": "default" + } + }, + "minecraft:tall_seagrass[half=upper]": { + "bedrock_identifier": "minecraft:seagrass", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:seagrass", + "can_break_with_hand": true, + "bedrock_states": { + "sea_grass_type": "double_top" + } + }, + "minecraft:tall_seagrass[half=lower]": { + "bedrock_identifier": "minecraft:seagrass", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:seagrass", + "can_break_with_hand": true, + "bedrock_states": { + "sea_grass_type": "double_bot" + } + }, + "minecraft:piston[extended=true,facing=north]": { + "bedrock_identifier": "minecraft:piston", + "block_hardness": 1.5, + "collision_index": 6, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:piston[extended=true,facing=east]": { + "bedrock_identifier": "minecraft:piston", + "block_hardness": 1.5, + "collision_index": 7, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:piston[extended=true,facing=south]": { + "bedrock_identifier": "minecraft:piston", + "block_hardness": 1.5, + "collision_index": 8, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:piston[extended=true,facing=west]": { + "bedrock_identifier": "minecraft:piston", + "block_hardness": 1.5, + "collision_index": 9, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:piston[extended=true,facing=up]": { + "bedrock_identifier": "minecraft:piston", + "block_hardness": 1.5, + "collision_index": 10, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piston[extended=true,facing=down]": { + "bedrock_identifier": "minecraft:piston", + "block_hardness": 1.5, + "collision_index": 11, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0 + } + }, + "minecraft:piston[extended=false,facing=north]": { + "bedrock_identifier": "minecraft:piston", + "block_hardness": 1.5, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:piston[extended=false,facing=east]": { + "bedrock_identifier": "minecraft:piston", + "block_hardness": 1.5, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:piston[extended=false,facing=south]": { + "bedrock_identifier": "minecraft:piston", + "block_hardness": 1.5, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:piston[extended=false,facing=west]": { + "bedrock_identifier": "minecraft:piston", + "block_hardness": 1.5, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:piston[extended=false,facing=up]": { + "bedrock_identifier": "minecraft:piston", + "block_hardness": 1.5, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piston[extended=false,facing=down]": { + "bedrock_identifier": "minecraft:piston", + "block_hardness": 1.5, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0 + } + }, + "minecraft:piston_head[facing=north,short=true,type=normal]": { + "bedrock_identifier": "minecraft:piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 12, + "piston_behavior": "block", + "pick_item": "minecraft:piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:piston_head[facing=north,short=true,type=sticky]": { + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 12, + "piston_behavior": "block", + "pick_item": "minecraft:sticky_piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:piston_head[facing=north,short=false,type=normal]": { + "bedrock_identifier": "minecraft:piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 13, + "piston_behavior": "block", + "pick_item": "minecraft:piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:piston_head[facing=north,short=false,type=sticky]": { + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 13, + "piston_behavior": "block", + "pick_item": "minecraft:sticky_piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:piston_head[facing=east,short=true,type=normal]": { + "bedrock_identifier": "minecraft:piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 14, + "piston_behavior": "block", + "pick_item": "minecraft:piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:piston_head[facing=east,short=true,type=sticky]": { + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 14, + "piston_behavior": "block", + "pick_item": "minecraft:sticky_piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:piston_head[facing=east,short=false,type=normal]": { + "bedrock_identifier": "minecraft:piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 15, + "piston_behavior": "block", + "pick_item": "minecraft:piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:piston_head[facing=east,short=false,type=sticky]": { + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 15, + "piston_behavior": "block", + "pick_item": "minecraft:sticky_piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:piston_head[facing=south,short=true,type=normal]": { + "bedrock_identifier": "minecraft:piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 16, + "piston_behavior": "block", + "pick_item": "minecraft:piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:piston_head[facing=south,short=true,type=sticky]": { + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 16, + "piston_behavior": "block", + "pick_item": "minecraft:sticky_piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:piston_head[facing=south,short=false,type=normal]": { + "bedrock_identifier": "minecraft:piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 17, + "piston_behavior": "block", + "pick_item": "minecraft:piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:piston_head[facing=south,short=false,type=sticky]": { + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 17, + "piston_behavior": "block", + "pick_item": "minecraft:sticky_piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:piston_head[facing=west,short=true,type=normal]": { + "bedrock_identifier": "minecraft:piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 18, + "piston_behavior": "block", + "pick_item": "minecraft:piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:piston_head[facing=west,short=true,type=sticky]": { + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 18, + "piston_behavior": "block", + "pick_item": "minecraft:sticky_piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:piston_head[facing=west,short=false,type=normal]": { + "bedrock_identifier": "minecraft:piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 19, + "piston_behavior": "block", + "pick_item": "minecraft:piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:piston_head[facing=west,short=false,type=sticky]": { + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 19, + "piston_behavior": "block", + "pick_item": "minecraft:sticky_piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:piston_head[facing=up,short=true,type=normal]": { + "bedrock_identifier": "minecraft:piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 20, + "piston_behavior": "block", + "pick_item": "minecraft:piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piston_head[facing=up,short=true,type=sticky]": { + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 20, + "piston_behavior": "block", + "pick_item": "minecraft:sticky_piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piston_head[facing=up,short=false,type=normal]": { + "bedrock_identifier": "minecraft:piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 21, + "piston_behavior": "block", + "pick_item": "minecraft:piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piston_head[facing=up,short=false,type=sticky]": { + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 21, + "piston_behavior": "block", + "pick_item": "minecraft:sticky_piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piston_head[facing=down,short=true,type=normal]": { + "bedrock_identifier": "minecraft:piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 22, + "piston_behavior": "block", + "pick_item": "minecraft:piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0 + } + }, + "minecraft:piston_head[facing=down,short=true,type=sticky]": { + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 22, + "piston_behavior": "block", + "pick_item": "minecraft:sticky_piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0 + } + }, + "minecraft:piston_head[facing=down,short=false,type=normal]": { + "bedrock_identifier": "minecraft:piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 23, + "piston_behavior": "block", + "pick_item": "minecraft:piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0 + } + }, + "minecraft:piston_head[facing=down,short=false,type=sticky]": { + "bedrock_identifier": "minecraft:sticky_piston_arm_collision", + "block_hardness": 1.5, + "collision_index": 23, + "piston_behavior": "block", + "pick_item": "minecraft:sticky_piston", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0 + } + }, + "minecraft:white_wool": { + "bedrock_identifier": "minecraft:white_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:orange_wool": { + "bedrock_identifier": "minecraft:orange_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:magenta_wool": { + "bedrock_identifier": "minecraft:magenta_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:light_blue_wool": { + "bedrock_identifier": "minecraft:light_blue_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:yellow_wool": { + "bedrock_identifier": "minecraft:yellow_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:lime_wool": { + "bedrock_identifier": "minecraft:lime_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:pink_wool": { + "bedrock_identifier": "minecraft:pink_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:gray_wool": { + "bedrock_identifier": "minecraft:gray_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:light_gray_wool": { + "bedrock_identifier": "minecraft:light_gray_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:cyan_wool": { + "bedrock_identifier": "minecraft:cyan_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:purple_wool": { + "bedrock_identifier": "minecraft:purple_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:blue_wool": { + "bedrock_identifier": "minecraft:blue_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:brown_wool": { + "bedrock_identifier": "minecraft:brown_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:green_wool": { + "bedrock_identifier": "minecraft:green_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:red_wool": { + "bedrock_identifier": "minecraft:red_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:black_wool": { + "bedrock_identifier": "minecraft:black_wool", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:moving_piston[facing=north,type=normal]": { + "bedrock_identifier": "minecraft:moving_block", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "has_block_entity": true, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:moving_piston[facing=north,type=sticky]": { + "bedrock_identifier": "minecraft:moving_block", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "has_block_entity": true, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:moving_piston[facing=east,type=normal]": { + "bedrock_identifier": "minecraft:moving_block", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "has_block_entity": true, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:moving_piston[facing=east,type=sticky]": { + "bedrock_identifier": "minecraft:moving_block", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "has_block_entity": true, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:moving_piston[facing=south,type=normal]": { + "bedrock_identifier": "minecraft:moving_block", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "has_block_entity": true, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:moving_piston[facing=south,type=sticky]": { + "bedrock_identifier": "minecraft:moving_block", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "has_block_entity": true, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:moving_piston[facing=west,type=normal]": { + "bedrock_identifier": "minecraft:moving_block", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "has_block_entity": true, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:moving_piston[facing=west,type=sticky]": { + "bedrock_identifier": "minecraft:moving_block", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "has_block_entity": true, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:moving_piston[facing=up,type=normal]": { + "bedrock_identifier": "minecraft:moving_block", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "has_block_entity": true, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:moving_piston[facing=up,type=sticky]": { + "bedrock_identifier": "minecraft:moving_block", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "has_block_entity": true, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:moving_piston[facing=down,type=normal]": { + "bedrock_identifier": "minecraft:moving_block", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "has_block_entity": true, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:moving_piston[facing=down,type=sticky]": { + "bedrock_identifier": "minecraft:moving_block", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "has_block_entity": true, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:dandelion": { + "bedrock_identifier": "minecraft:yellow_flower", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true + }, + "minecraft:torchflower": { + "bedrock_identifier": "minecraft:torchflower", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true + }, + "minecraft:poppy": { + "bedrock_identifier": "minecraft:red_flower", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "flower_type": "poppy" + } + }, + "minecraft:blue_orchid": { + "bedrock_identifier": "minecraft:red_flower", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "flower_type": "orchid" + } + }, + "minecraft:allium": { + "bedrock_identifier": "minecraft:red_flower", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "flower_type": "allium" + } + }, + "minecraft:azure_bluet": { + "bedrock_identifier": "minecraft:red_flower", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "flower_type": "houstonia" + } + }, + "minecraft:red_tulip": { + "bedrock_identifier": "minecraft:red_flower", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "flower_type": "tulip_red" + } + }, + "minecraft:orange_tulip": { + "bedrock_identifier": "minecraft:red_flower", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "flower_type": "tulip_orange" + } + }, + "minecraft:white_tulip": { + "bedrock_identifier": "minecraft:red_flower", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "flower_type": "tulip_white" + } + }, + "minecraft:pink_tulip": { + "bedrock_identifier": "minecraft:red_flower", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "flower_type": "tulip_pink" + } + }, + "minecraft:oxeye_daisy": { + "bedrock_identifier": "minecraft:red_flower", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "flower_type": "oxeye" + } + }, + "minecraft:cornflower": { + "bedrock_identifier": "minecraft:red_flower", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "flower_type": "cornflower" + } + }, + "minecraft:wither_rose": { + "bedrock_identifier": "minecraft:wither_rose", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true + }, + "minecraft:lily_of_the_valley": { + "bedrock_identifier": "minecraft:red_flower", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "flower_type": "lily_of_the_valley" + } + }, + "minecraft:brown_mushroom": { + "bedrock_identifier": "minecraft:brown_mushroom", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true + }, + "minecraft:red_mushroom": { + "bedrock_identifier": "minecraft:red_mushroom", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true + }, + "minecraft:gold_block": { + "bedrock_identifier": "minecraft:gold_block", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:iron_block": { + "bedrock_identifier": "minecraft:iron_block", + "block_hardness": 5.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:bricks": { + "bedrock_identifier": "minecraft:brick_block", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:tnt[unstable=true]": { + "bedrock_identifier": "minecraft:tnt", + "block_hardness": 0.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "explode_bit": false, + "allow_underwater_bit": true + } + }, + "minecraft:tnt[unstable=false]": { + "bedrock_identifier": "minecraft:tnt", + "block_hardness": 0.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "explode_bit": false, + "allow_underwater_bit": false + } + }, + "minecraft:bookshelf": { + "bedrock_identifier": "minecraft:bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 63, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 31, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 47, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 15, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 55, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 23, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 39, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 7, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 59, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 27, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 43, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 11, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 51, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 19, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 35, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 3, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 61, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 29, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 45, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 13, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 53, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 21, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 37, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 5, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 57, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 25, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 41, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 9, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 49, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 17, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 33, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 1, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 62, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 30, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 46, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 14, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 54, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 22, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 38, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 6, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 58, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 26, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 42, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 10, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 50, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 18, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 34, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 2, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 60, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 28, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 44, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 12, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 52, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 20, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 36, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 4, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 56, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 24, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 40, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 8, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 48, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 16, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 32, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=north,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 0, + "direction": 2 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 63, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 31, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 47, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 15, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 55, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 23, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 39, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 7, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 59, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 27, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 43, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 11, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 51, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 19, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 35, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 3, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 61, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 29, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 45, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 13, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 53, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 21, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 37, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 5, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 57, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 25, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 41, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 9, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 49, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 17, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 33, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 1, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 62, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 30, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 46, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 14, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 54, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 22, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 38, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 6, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 58, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 26, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 42, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 10, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 50, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 18, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 34, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 2, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 60, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 28, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 44, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 12, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 52, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 20, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 36, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 4, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 56, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 24, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 40, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 8, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 48, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 16, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 32, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=south,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 0, + "direction": 0 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 63, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 31, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 47, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 15, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 55, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 23, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 39, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 7, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 59, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 27, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 43, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 11, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 51, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 19, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 35, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 3, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 61, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 29, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 45, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 13, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 53, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 21, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 37, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 5, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 57, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 25, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 41, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 9, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 49, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 17, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 33, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 1, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 62, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 30, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 46, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 14, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 54, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 22, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 38, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 6, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 58, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 26, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 42, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 10, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 50, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 18, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 34, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 2, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 60, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 28, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 44, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 12, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 52, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 20, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 36, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 4, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 56, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 24, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 40, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 8, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 48, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 16, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 32, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=west,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 0, + "direction": 1 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 63, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 31, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 47, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 15, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 55, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 23, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 39, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 7, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 59, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 27, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 43, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 11, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 51, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 19, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 35, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 3, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 61, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 29, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 45, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 13, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 53, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 21, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 37, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 5, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 57, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 25, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 41, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 9, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 49, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 17, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 33, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=true,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 1, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 62, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 30, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 46, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 14, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 54, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 22, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 38, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 6, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 58, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 26, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 42, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 10, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 50, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 18, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 34, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=true,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 2, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 60, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 28, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 44, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 12, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 52, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 20, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 36, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=true,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 4, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 56, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 24, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 40, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=true,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 8, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 48, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=true,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 16, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=true]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 32, + "direction": 3 + } + }, + "minecraft:chiseled_bookshelf[facing=east,slot_0_occupied=false,slot_1_occupied=false,slot_2_occupied=false,slot_3_occupied=false,slot_4_occupied=false,slot_5_occupied=false]": { + "bedrock_identifier": "minecraft:chiseled_bookshelf", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "books_stored": 0, + "direction": 3 + } + }, + "minecraft:mossy_cobblestone": { + "bedrock_identifier": "minecraft:mossy_cobblestone", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:obsidian": { + "bedrock_identifier": "minecraft:obsidian", + "block_hardness": 50.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:torch": { + "bedrock_identifier": "minecraft:torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "top" + } + }, + "minecraft:wall_torch[facing=north]": { + "bedrock_identifier": "minecraft:torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "south" + } + }, + "minecraft:wall_torch[facing=south]": { + "bedrock_identifier": "minecraft:torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "north" + } + }, + "minecraft:wall_torch[facing=west]": { + "bedrock_identifier": "minecraft:torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "east" + } + }, + "minecraft:wall_torch[facing=east]": { + "bedrock_identifier": "minecraft:torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "west" + } + }, + "minecraft:fire[age=0,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:soul_fire": { + "bedrock_identifier": "minecraft:soul_fire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:air", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:spawner": { + "bedrock_identifier": "minecraft:mob_spawner", + "block_hardness": 5.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false + }, + "minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:chest[facing=north,type=single,waterlogged=true]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "z": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:chest[facing=north,type=single,waterlogged=false]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "z": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:chest[facing=north,type=left,waterlogged=true]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 49, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "z": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:chest[facing=north,type=left,waterlogged=false]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 49, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "z": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:chest[facing=north,type=right,waterlogged=true]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 50, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "z": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:chest[facing=north,type=right,waterlogged=false]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 50, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "z": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:chest[facing=south,type=single,waterlogged=true]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "z": true, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:chest[facing=south,type=single,waterlogged=false]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "z": true, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:chest[facing=south,type=left,waterlogged=true]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 50, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "z": true, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:chest[facing=south,type=left,waterlogged=false]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 50, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "z": true, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:chest[facing=south,type=right,waterlogged=true]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 49, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "z": true, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:chest[facing=south,type=right,waterlogged=false]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 49, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "z": true, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:chest[facing=west,type=single,waterlogged=true]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "x": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:chest[facing=west,type=single,waterlogged=false]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "x": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:chest[facing=west,type=left,waterlogged=true]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 51, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "x": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:chest[facing=west,type=left,waterlogged=false]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 51, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "x": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:chest[facing=west,type=right,waterlogged=true]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 52, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "x": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:chest[facing=west,type=right,waterlogged=false]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 52, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "x": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:chest[facing=east,type=single,waterlogged=true]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "x": true, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:chest[facing=east,type=single,waterlogged=false]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "x": true, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:chest[facing=east,type=left,waterlogged=true]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 52, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "x": true, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:chest[facing=east,type=left,waterlogged=false]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 52, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "x": true, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:chest[facing=east,type=right,waterlogged=true]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 51, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "x": true, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:chest[facing=east,type=right,waterlogged=false]": { + "bedrock_identifier": "minecraft:chest", + "block_hardness": 2.5, + "collision_index": 51, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "x": true, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=0,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=0,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=0,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=1,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=1,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=1,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=2,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=2,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=2,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=3,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=3,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=3,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=4,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=4,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=4,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=5,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=5,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=5,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=6,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=6,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=6,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=7,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=7,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=7,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=8,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=8,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=8,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=9,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=9,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=9,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=10,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=10,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=10,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=11,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=11,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=11,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=12,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=12,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=12,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=13,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=13,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=13,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=14,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=14,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=14,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=15,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=15,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=up,power=15,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=0,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=0,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=0,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=1,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=1,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=1,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=2,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=2,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=2,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=3,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=3,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=3,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=4,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=4,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=4,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=5,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=5,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=5,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=6,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=6,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=6,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=7,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=7,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=7,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=8,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=8,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=8,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=9,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=9,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=9,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=10,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=10,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=10,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=11,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=11,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=11,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=12,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=12,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=12,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=13,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=13,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=13,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=14,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=14,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=14,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=15,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=15,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=side,power=15,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=0,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=0,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=0,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=1,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=1,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=1,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=2,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=2,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=2,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=3,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=3,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=3,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=4,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=4,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=4,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=5,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=5,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=5,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=6,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=6,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=6,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=7,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=7,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=7,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=8,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=8,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=8,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=9,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=9,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=9,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=10,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=10,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=10,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=11,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=11,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=11,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=12,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=12,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=12,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=13,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=13,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=13,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=14,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=14,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=14,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=15,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=15,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=up,north=none,power=15,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=0,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=0,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=0,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=1,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=1,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=1,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=2,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=2,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=2,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=3,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=3,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=3,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=4,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=4,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=4,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=5,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=5,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=5,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=6,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=6,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=6,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=7,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=7,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=7,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=8,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=8,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=8,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=9,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=9,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=9,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=10,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=10,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=10,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=11,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=11,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=11,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=12,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=12,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=12,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=13,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=13,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=13,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=14,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=14,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=14,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=15,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=15,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=up,power=15,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=0,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=0,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=0,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=1,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=1,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=1,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=2,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=2,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=2,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=3,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=3,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=3,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=4,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=4,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=4,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=5,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=5,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=5,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=6,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=6,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=6,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=7,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=7,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=7,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=8,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=8,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=8,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=9,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=9,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=9,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=10,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=10,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=10,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=11,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=11,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=11,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=12,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=12,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=12,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=13,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=13,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=13,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=14,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=14,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=14,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=15,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=15,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=side,power=15,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=0,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=0,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=0,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=1,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=1,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=1,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=2,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=2,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=2,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=3,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=3,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=3,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=4,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=4,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=4,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=5,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=5,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=5,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=6,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=6,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=6,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=7,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=7,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=7,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=8,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=8,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=8,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=9,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=9,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=9,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=10,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=10,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=10,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=11,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=11,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=11,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=12,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=12,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=12,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=13,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=13,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=13,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=14,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=14,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=14,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=15,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=15,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=side,north=none,power=15,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=0,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=0,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=0,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=1,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=1,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=1,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=2,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=2,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=2,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=3,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=3,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=3,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=4,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=4,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=4,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=5,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=5,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=5,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=6,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=6,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=6,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=7,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=7,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=7,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=8,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=8,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=8,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=9,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=9,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=9,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=10,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=10,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=10,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=11,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=11,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=11,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=12,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=12,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=12,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=13,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=13,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=13,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=14,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=14,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=14,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=15,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=15,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=up,power=15,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=0,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=0,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=0,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=1,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=1,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=1,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=2,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=2,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=2,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=3,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=3,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=3,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=4,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=4,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=4,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=5,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=5,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=5,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=6,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=6,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=6,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=7,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=7,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=7,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=8,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=8,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=8,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=9,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=9,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=9,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=10,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=10,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=10,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=11,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=11,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=11,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=12,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=12,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=12,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=13,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=13,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=13,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=14,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=14,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=14,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=15,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=15,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=side,power=15,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=0,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=0,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=1,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=1,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=2,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=2,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=3,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=3,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=4,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=4,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=5,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=5,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=6,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=6,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=7,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=7,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=8,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=8,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=9,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=9,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=10,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=10,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=11,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=11,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=12,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=12,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=13,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=13,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=14,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=14,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=15,south=up,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=15,south=side,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=up]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=side]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=none]": { + "bedrock_identifier": "minecraft:redstone_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:diamond_ore": { + "bedrock_identifier": "minecraft:diamond_ore", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:deepslate_diamond_ore": { + "bedrock_identifier": "minecraft:deepslate_diamond_ore", + "block_hardness": 4.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:diamond_block": { + "bedrock_identifier": "minecraft:diamond_block", + "block_hardness": 5.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:crafting_table": { + "bedrock_identifier": "minecraft:crafting_table", + "block_hardness": 2.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:wheat[age=0]": { + "bedrock_identifier": "minecraft:wheat", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:wheat_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 0 + } + }, + "minecraft:wheat[age=1]": { + "bedrock_identifier": "minecraft:wheat", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:wheat_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 1 + } + }, + "minecraft:wheat[age=2]": { + "bedrock_identifier": "minecraft:wheat", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:wheat_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 2 + } + }, + "minecraft:wheat[age=3]": { + "bedrock_identifier": "minecraft:wheat", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:wheat_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 3 + } + }, + "minecraft:wheat[age=4]": { + "bedrock_identifier": "minecraft:wheat", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:wheat_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 4 + } + }, + "minecraft:wheat[age=5]": { + "bedrock_identifier": "minecraft:wheat", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:wheat_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 5 + } + }, + "minecraft:wheat[age=6]": { + "bedrock_identifier": "minecraft:wheat", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:wheat_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 6 + } + }, + "minecraft:wheat[age=7]": { + "bedrock_identifier": "minecraft:wheat", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:wheat_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7 + } + }, + "minecraft:farmland[moisture=0]": { + "bedrock_identifier": "minecraft:farmland", + "block_hardness": 0.6, + "collision_index": 53, + "can_break_with_hand": true, + "bedrock_states": { + "moisturized_amount": 0 + } + }, + "minecraft:farmland[moisture=1]": { + "bedrock_identifier": "minecraft:farmland", + "block_hardness": 0.6, + "collision_index": 53, + "can_break_with_hand": true, + "bedrock_states": { + "moisturized_amount": 1 + } + }, + "minecraft:farmland[moisture=2]": { + "bedrock_identifier": "minecraft:farmland", + "block_hardness": 0.6, + "collision_index": 53, + "can_break_with_hand": true, + "bedrock_states": { + "moisturized_amount": 2 + } + }, + "minecraft:farmland[moisture=3]": { + "bedrock_identifier": "minecraft:farmland", + "block_hardness": 0.6, + "collision_index": 53, + "can_break_with_hand": true, + "bedrock_states": { + "moisturized_amount": 3 + } + }, + "minecraft:farmland[moisture=4]": { + "bedrock_identifier": "minecraft:farmland", + "block_hardness": 0.6, + "collision_index": 53, + "can_break_with_hand": true, + "bedrock_states": { + "moisturized_amount": 4 + } + }, + "minecraft:farmland[moisture=5]": { + "bedrock_identifier": "minecraft:farmland", + "block_hardness": 0.6, + "collision_index": 53, + "can_break_with_hand": true, + "bedrock_states": { + "moisturized_amount": 5 + } + }, + "minecraft:farmland[moisture=6]": { + "bedrock_identifier": "minecraft:farmland", + "block_hardness": 0.6, + "collision_index": 53, + "can_break_with_hand": true, + "bedrock_states": { + "moisturized_amount": 6 + } + }, + "minecraft:farmland[moisture=7]": { + "bedrock_identifier": "minecraft:farmland", + "block_hardness": 0.6, + "collision_index": 53, + "can_break_with_hand": true, + "bedrock_states": { + "moisturized_amount": 7 + } + }, + "minecraft:furnace[facing=north,lit=true]": { + "bedrock_identifier": "minecraft:lit_furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:furnace[facing=north,lit=false]": { + "bedrock_identifier": "minecraft:furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:furnace[facing=south,lit=true]": { + "bedrock_identifier": "minecraft:lit_furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:furnace[facing=south,lit=false]": { + "bedrock_identifier": "minecraft:furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:furnace[facing=west,lit=true]": { + "bedrock_identifier": "minecraft:lit_furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:furnace[facing=west,lit=false]": { + "bedrock_identifier": "minecraft:furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:furnace[facing=east,lit=true]": { + "bedrock_identifier": "minecraft:lit_furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:furnace[facing=east,lit=false]": { + "bedrock_identifier": "minecraft:furnace", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:oak_sign[rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:oak_sign[rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft: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_sign[rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft: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:spruce_sign[rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_sign[rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_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:birch_sign[rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_sign[rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_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:acacia_sign[rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_sign[rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_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:cherry_sign[rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_sign[rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:jungle_sign[rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_sign[rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_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:dark_oak_sign[rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_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:dark_oak_sign[rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_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=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:bamboo_sign[rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_sign[rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:wooden_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:ladder[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:ladder", + "block_hardness": 0.4, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:ladder[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:ladder", + "block_hardness": 0.4, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:ladder[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:ladder", + "block_hardness": 0.4, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:ladder[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:ladder", + "block_hardness": 0.4, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:ladder[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:ladder", + "block_hardness": 0.4, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:ladder[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:ladder", + "block_hardness": 0.4, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:ladder[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:ladder", + "block_hardness": 0.4, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:ladder[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:ladder", + "block_hardness": 0.4, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:rail[shape=north_south,waterlogged=true]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 0 + } + }, + "minecraft:rail[shape=north_south,waterlogged=false]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 0 + } + }, + "minecraft:rail[shape=east_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 1 + } + }, + "minecraft:rail[shape=east_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 1 + } + }, + "minecraft:rail[shape=ascending_east,waterlogged=true]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 2 + } + }, + "minecraft:rail[shape=ascending_east,waterlogged=false]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 2 + } + }, + "minecraft:rail[shape=ascending_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 3 + } + }, + "minecraft:rail[shape=ascending_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 3 + } + }, + "minecraft:rail[shape=ascending_north,waterlogged=true]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 4 + } + }, + "minecraft:rail[shape=ascending_north,waterlogged=false]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 4 + } + }, + "minecraft:rail[shape=ascending_south,waterlogged=true]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 5 + } + }, + "minecraft:rail[shape=ascending_south,waterlogged=false]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 5 + } + }, + "minecraft:rail[shape=south_east,waterlogged=true]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 6 + } + }, + "minecraft:rail[shape=south_east,waterlogged=false]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 6 + } + }, + "minecraft:rail[shape=south_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 7 + } + }, + "minecraft:rail[shape=south_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 7 + } + }, + "minecraft:rail[shape=north_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 8 + } + }, + "minecraft:rail[shape=north_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 8 + } + }, + "minecraft:rail[shape=north_east,waterlogged=true]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 9 + } + }, + "minecraft:rail[shape=north_east,waterlogged=false]": { + "bedrock_identifier": "minecraft:rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_direction": 9 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:oak_wall_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:oak_wall_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:oak_wall_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:oak_wall_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:oak_wall_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:oak_wall_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:oak_wall_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:oak_wall_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:spruce_wall_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:spruce_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:spruce_wall_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:spruce_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:spruce_wall_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:spruce_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:spruce_wall_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:spruce_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:spruce_wall_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:spruce_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:spruce_wall_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:spruce_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:spruce_wall_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:spruce_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:spruce_wall_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:spruce_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:birch_wall_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:birch_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:birch_wall_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:birch_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:birch_wall_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:birch_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:birch_wall_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:birch_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:birch_wall_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:birch_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:birch_wall_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:birch_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:birch_wall_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:birch_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:birch_wall_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:birch_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:acacia_wall_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:acacia_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:acacia_wall_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:acacia_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:acacia_wall_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:acacia_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:acacia_wall_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:acacia_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:acacia_wall_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:acacia_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:acacia_wall_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:acacia_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:acacia_wall_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:acacia_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:acacia_wall_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:acacia_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:cherry_wall_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:cherry_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:cherry_wall_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:cherry_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:cherry_wall_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:cherry_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:cherry_wall_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:cherry_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:cherry_wall_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:cherry_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:cherry_wall_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:cherry_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:cherry_wall_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:cherry_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:cherry_wall_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:cherry_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:jungle_wall_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:jungle_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:jungle_wall_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:jungle_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:jungle_wall_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:jungle_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:jungle_wall_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:jungle_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:jungle_wall_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:jungle_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:jungle_wall_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:jungle_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:jungle_wall_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:jungle_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:jungle_wall_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:jungle_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:dark_oak_wall_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:dark_oak_wall_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:dark_oak_wall_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:dark_oak_wall_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:dark_oak_wall_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:dark_oak_wall_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:dark_oak_wall_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:darkoak_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:dark_oak_wall_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:darkoak_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_sign", + "can_break_with_hand": true, + "bedrock_states": { + "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:bamboo_wall_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:bamboo_wall_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:bamboo_wall_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:bamboo_wall_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:bamboo_wall_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:bamboo_wall_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:bamboo_wall_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:bamboo_wall_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=true,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_hanging_sign[attached=false,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=true,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:spruce_hanging_sign[attached=false,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=true,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:birch_hanging_sign[attached=false,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=true,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:acacia_hanging_sign[attached=false,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "facing_direction": 3, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "facing_direction": 4, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "facing_direction": 5, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=true,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "facing_direction": 3, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "facing_direction": 4, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "facing_direction": 5, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:cherry_hanging_sign[attached=false,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "facing_direction": 2, + "hanging": true + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=true,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:jungle_hanging_sign[attached=false,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=true,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:dark_oak_hanging_sign[attached=false,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=true,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:crimson_hanging_sign[attached=false,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=true,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:warped_hanging_sign[attached=false,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=true,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:mangrove_hanging_sign[attached=false,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": true, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": true, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": true, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=true,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": true, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 0, + "attached_bit": false, + "hanging": true, + "facing_direction": 3 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 1, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 2, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 3, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 4, + "attached_bit": false, + "hanging": true, + "facing_direction": 4 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 5, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 6, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 7, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 8, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 9, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 10, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 11, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 12, + "attached_bit": false, + "hanging": true, + "facing_direction": 5 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 13, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 14, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:bamboo_hanging_sign[attached=false,rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "ground_sign_direction": 15, + "attached_bit": false, + "hanging": true, + "facing_direction": 2 + } + }, + "minecraft:oak_wall_hanging_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:oak_wall_hanging_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:oak_wall_hanging_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:oak_wall_hanging_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:oak_wall_hanging_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:oak_wall_hanging_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:oak_wall_hanging_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:oak_wall_hanging_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:spruce_wall_hanging_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:spruce_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:spruce_wall_hanging_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:spruce_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:spruce_wall_hanging_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:spruce_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:spruce_wall_hanging_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:spruce_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:spruce_wall_hanging_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:spruce_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:spruce_wall_hanging_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:spruce_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:spruce_wall_hanging_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:spruce_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:spruce_wall_hanging_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:spruce_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:birch_wall_hanging_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:birch_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:birch_wall_hanging_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:birch_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:birch_wall_hanging_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:birch_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:birch_wall_hanging_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:birch_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:birch_wall_hanging_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:birch_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:birch_wall_hanging_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:birch_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:birch_wall_hanging_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:birch_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:birch_wall_hanging_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:birch_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:acacia_wall_hanging_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:acacia_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:acacia_wall_hanging_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:acacia_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:acacia_wall_hanging_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:acacia_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:acacia_wall_hanging_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:acacia_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:acacia_wall_hanging_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:acacia_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:acacia_wall_hanging_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:acacia_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:acacia_wall_hanging_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:acacia_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:acacia_wall_hanging_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:acacia_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:cherry_wall_hanging_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:cherry_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "ground_sign_direction": 8, + "hanging": false + } + }, + "minecraft:cherry_wall_hanging_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:cherry_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "ground_sign_direction": 8, + "hanging": false + } + }, + "minecraft:cherry_wall_hanging_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:cherry_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "ground_sign_direction": 0, + "hanging": false + } + }, + "minecraft:cherry_wall_hanging_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:cherry_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "ground_sign_direction": 0, + "hanging": false + } + }, + "minecraft:cherry_wall_hanging_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:cherry_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "ground_sign_direction": 4, + "hanging": false + } + }, + "minecraft:cherry_wall_hanging_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:cherry_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "ground_sign_direction": 4, + "hanging": false + } + }, + "minecraft:cherry_wall_hanging_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:cherry_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "ground_sign_direction": 12, + "hanging": false + } + }, + "minecraft:cherry_wall_hanging_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:cherry_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "ground_sign_direction": 12, + "hanging": false + } + }, + "minecraft:jungle_wall_hanging_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:jungle_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:jungle_wall_hanging_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:jungle_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:jungle_wall_hanging_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:jungle_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:jungle_wall_hanging_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:jungle_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:jungle_wall_hanging_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:jungle_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:jungle_wall_hanging_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:jungle_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:jungle_wall_hanging_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:jungle_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:jungle_wall_hanging_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:jungle_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:dark_oak_wall_hanging_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:dark_oak_wall_hanging_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:dark_oak_wall_hanging_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:dark_oak_wall_hanging_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:dark_oak_wall_hanging_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:dark_oak_wall_hanging_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:dark_oak_wall_hanging_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:dark_oak_wall_hanging_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:dark_oak_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:mangrove_wall_hanging_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:mangrove_wall_hanging_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:mangrove_wall_hanging_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:mangrove_wall_hanging_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:mangrove_wall_hanging_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:mangrove_wall_hanging_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:mangrove_wall_hanging_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:mangrove_wall_hanging_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:mangrove_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:crimson_wall_hanging_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:crimson_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:crimson_wall_hanging_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:crimson_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:crimson_wall_hanging_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:crimson_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:crimson_wall_hanging_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:crimson_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:crimson_wall_hanging_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:crimson_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:crimson_wall_hanging_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:crimson_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:crimson_wall_hanging_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:crimson_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:crimson_wall_hanging_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:crimson_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:warped_wall_hanging_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:warped_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:warped_wall_hanging_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:warped_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 8 + } + }, + "minecraft:warped_wall_hanging_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:warped_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:warped_wall_hanging_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:warped_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 0 + } + }, + "minecraft:warped_wall_hanging_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:warped_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:warped_wall_hanging_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:warped_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 4 + } + }, + "minecraft:warped_wall_hanging_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:warped_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:warped_wall_hanging_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:warped_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "hanging": false, + "ground_sign_direction": 12 + } + }, + "minecraft:bamboo_wall_hanging_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "ground_sign_direction": 8, + "hanging": false + } + }, + "minecraft:bamboo_wall_hanging_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2, + "attached_bit": true, + "ground_sign_direction": 8, + "hanging": false + } + }, + "minecraft:bamboo_wall_hanging_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "ground_sign_direction": 0, + "hanging": false + } + }, + "minecraft:bamboo_wall_hanging_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 58, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3, + "attached_bit": true, + "ground_sign_direction": 0, + "hanging": false + } + }, + "minecraft:bamboo_wall_hanging_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "ground_sign_direction": 4, + "hanging": false + } + }, + "minecraft:bamboo_wall_hanging_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4, + "attached_bit": true, + "ground_sign_direction": 4, + "hanging": false + } + }, + "minecraft:bamboo_wall_hanging_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "ground_sign_direction": 12, + "hanging": false + } + }, + "minecraft:bamboo_wall_hanging_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_hanging_sign", + "block_hardness": 1.0, + "collision_index": 59, + "has_block_entity": true, + "pick_item": "minecraft:bamboo_hanging_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5, + "attached_bit": true, + "ground_sign_direction": 12, + "hanging": false + } + }, + "minecraft:lever[face=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "lever_direction": "up_north_south" + } + }, + "minecraft:lever[face=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "lever_direction": "up_north_south" + } + }, + "minecraft:lever[face=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "lever_direction": "up_north_south" + } + }, + "minecraft:lever[face=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "lever_direction": "up_north_south" + } + }, + "minecraft:lever[face=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "lever_direction": "up_east_west" + } + }, + "minecraft:lever[face=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "lever_direction": "up_east_west" + } + }, + "minecraft:lever[face=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "lever_direction": "up_east_west" + } + }, + "minecraft:lever[face=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "lever_direction": "up_east_west" + } + }, + "minecraft:lever[face=wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "lever_direction": "north" + } + }, + "minecraft:lever[face=wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "lever_direction": "north" + } + }, + "minecraft:lever[face=wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "lever_direction": "south" + } + }, + "minecraft:lever[face=wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "lever_direction": "south" + } + }, + "minecraft:lever[face=wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "lever_direction": "west" + } + }, + "minecraft:lever[face=wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "lever_direction": "west" + } + }, + "minecraft:lever[face=wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "lever_direction": "east" + } + }, + "minecraft:lever[face=wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "lever_direction": "east" + } + }, + "minecraft:lever[face=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "lever_direction": "down_north_south" + } + }, + "minecraft:lever[face=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "lever_direction": "down_north_south" + } + }, + "minecraft:lever[face=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "lever_direction": "down_north_south" + } + }, + "minecraft:lever[face=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "lever_direction": "down_north_south" + } + }, + "minecraft:lever[face=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "lever_direction": "down_east_west" + } + }, + "minecraft:lever[face=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "lever_direction": "down_east_west" + } + }, + "minecraft:lever[face=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "lever_direction": "down_east_west" + } + }, + "minecraft:lever[face=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:lever", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "lever_direction": "down_east_west" + } + }, + "minecraft:stone_pressure_plate[powered=true]": { + "bedrock_identifier": "minecraft:stone_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:stone_pressure_plate[powered=false]": { + "bedrock_identifier": "minecraft:stone_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:iron_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:iron_door", + "block_hardness": 5.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:oak_pressure_plate[powered=true]": { + "bedrock_identifier": "minecraft:wooden_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:oak_pressure_plate[powered=false]": { + "bedrock_identifier": "minecraft:wooden_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:spruce_pressure_plate[powered=true]": { + "bedrock_identifier": "minecraft:spruce_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:spruce_pressure_plate[powered=false]": { + "bedrock_identifier": "minecraft:spruce_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:birch_pressure_plate[powered=true]": { + "bedrock_identifier": "minecraft:birch_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:birch_pressure_plate[powered=false]": { + "bedrock_identifier": "minecraft:birch_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:jungle_pressure_plate[powered=true]": { + "bedrock_identifier": "minecraft:jungle_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:jungle_pressure_plate[powered=false]": { + "bedrock_identifier": "minecraft:jungle_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:acacia_pressure_plate[powered=true]": { + "bedrock_identifier": "minecraft:acacia_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:acacia_pressure_plate[powered=false]": { + "bedrock_identifier": "minecraft:acacia_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:cherry_pressure_plate[powered=true]": { + "bedrock_identifier": "minecraft:cherry_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:cherry_pressure_plate[powered=false]": { + "bedrock_identifier": "minecraft:cherry_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:dark_oak_pressure_plate[powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:dark_oak_pressure_plate[powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "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:bamboo_pressure_plate[powered=true]": { + "bedrock_identifier": "minecraft:bamboo_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:bamboo_pressure_plate[powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:redstone_ore[lit=false]": { + "bedrock_identifier": "minecraft:redstone_ore", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:deepslate_redstone_ore[lit=true]": { + "bedrock_identifier": "minecraft:lit_deepslate_redstone_ore", + "block_hardness": 4.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:deepslate_redstone_ore[lit=false]": { + "bedrock_identifier": "minecraft:deepslate_redstone_ore", + "block_hardness": 4.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:redstone_torch[lit=true]": { + "bedrock_identifier": "minecraft:redstone_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "top" + } + }, + "minecraft:redstone_torch[lit=false]": { + "bedrock_identifier": "minecraft:unlit_redstone_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "top" + } + }, + "minecraft:redstone_wall_torch[facing=north,lit=true]": { + "bedrock_identifier": "minecraft:redstone_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone_torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "south" + } + }, + "minecraft:redstone_wall_torch[facing=north,lit=false]": { + "bedrock_identifier": "minecraft:unlit_redstone_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone_torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "south" + } + }, + "minecraft:redstone_wall_torch[facing=south,lit=true]": { + "bedrock_identifier": "minecraft:redstone_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone_torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "north" + } + }, + "minecraft:redstone_wall_torch[facing=south,lit=false]": { + "bedrock_identifier": "minecraft:unlit_redstone_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone_torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "north" + } + }, + "minecraft:redstone_wall_torch[facing=west,lit=true]": { + "bedrock_identifier": "minecraft:redstone_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone_torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "east" + } + }, + "minecraft:redstone_wall_torch[facing=west,lit=false]": { + "bedrock_identifier": "minecraft:unlit_redstone_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone_torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "east" + } + }, + "minecraft:redstone_wall_torch[facing=east,lit=true]": { + "bedrock_identifier": "minecraft:redstone_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone_torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "west" + } + }, + "minecraft:redstone_wall_torch[facing=east,lit=false]": { + "bedrock_identifier": "minecraft:unlit_redstone_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:redstone_torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "west" + } + }, + "minecraft:stone_button[face=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:stone_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:stone_button[face=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:stone_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:snow[layers=1]": { + "bedrock_identifier": "minecraft:snow_layer", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "covered_bit": false, + "height": 0 + } + }, + "minecraft:snow[layers=2]": { + "bedrock_identifier": "minecraft:snow_layer", + "block_hardness": 0.1, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "covered_bit": false, + "height": 1 + } + }, + "minecraft:snow[layers=3]": { + "bedrock_identifier": "minecraft:snow_layer", + "block_hardness": 0.1, + "collision_index": 61, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "covered_bit": false, + "height": 2 + } + }, + "minecraft:snow[layers=4]": { + "bedrock_identifier": "minecraft:snow_layer", + "block_hardness": 0.1, + "collision_index": 62, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "covered_bit": false, + "height": 3 + } + }, + "minecraft:snow[layers=5]": { + "bedrock_identifier": "minecraft:snow_layer", + "block_hardness": 0.1, + "collision_index": 63, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "covered_bit": false, + "height": 4 + } + }, + "minecraft:snow[layers=6]": { + "bedrock_identifier": "minecraft:snow_layer", + "block_hardness": 0.1, + "collision_index": 64, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "covered_bit": false, + "height": 5 + } + }, + "minecraft:snow[layers=7]": { + "bedrock_identifier": "minecraft:snow_layer", + "block_hardness": 0.1, + "collision_index": 10, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "covered_bit": false, + "height": 6 + } + }, + "minecraft:snow[layers=8]": { + "bedrock_identifier": "minecraft:snow_layer", + "block_hardness": 0.1, + "collision_index": 65, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "covered_bit": false, + "height": 7 + } + }, + "minecraft:ice": { + "bedrock_identifier": "minecraft:ice", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:snow_block": { + "bedrock_identifier": "minecraft:snow", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:cactus[age=0]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:cactus[age=1]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:cactus[age=2]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:cactus[age=3]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:cactus[age=4]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:cactus[age=5]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:cactus[age=6]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:cactus[age=7]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:cactus[age=8]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:cactus[age=9]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:cactus[age=10]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:cactus[age=11]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:cactus[age=12]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:cactus[age=13]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:cactus[age=14]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:cactus[age=15]": { + "bedrock_identifier": "minecraft:cactus", + "block_hardness": 0.4, + "collision_index": 66, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:clay": { + "bedrock_identifier": "minecraft:clay", + "block_hardness": 0.6, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:sugar_cane[age=0]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:sugar_cane[age=1]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:sugar_cane[age=2]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:sugar_cane[age=3]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:sugar_cane[age=4]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:sugar_cane[age=5]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:sugar_cane[age=6]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 6 + } + }, + "minecraft:sugar_cane[age=7]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 7 + } + }, + "minecraft:sugar_cane[age=8]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 8 + } + }, + "minecraft:sugar_cane[age=9]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 9 + } + }, + "minecraft:sugar_cane[age=10]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 10 + } + }, + "minecraft:sugar_cane[age=11]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 11 + } + }, + "minecraft:sugar_cane[age=12]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 12 + } + }, + "minecraft:sugar_cane[age=13]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 13 + } + }, + "minecraft:sugar_cane[age=14]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 14 + } + }, + "minecraft:sugar_cane[age=15]": { + "bedrock_identifier": "minecraft:reeds", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 15 + } + }, + "minecraft:jukebox[has_record=true]": { + "bedrock_identifier": "minecraft:jukebox", + "block_hardness": 2.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true + }, + "minecraft:jukebox[has_record=false]": { + "bedrock_identifier": "minecraft:jukebox", + "block_hardness": 2.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:oak_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:netherrack": { + "bedrock_identifier": "minecraft:netherrack", + "block_hardness": 0.4, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:soul_sand": { + "bedrock_identifier": "minecraft:soul_sand", + "block_hardness": 0.5, + "collision_index": 65, + "can_break_with_hand": true + }, + "minecraft:soul_soil": { + "bedrock_identifier": "minecraft:soul_soil", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:basalt[axis=x]": { + "bedrock_identifier": "minecraft:basalt", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:basalt[axis=y]": { + "bedrock_identifier": "minecraft:basalt", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:basalt[axis=z]": { + "bedrock_identifier": "minecraft:basalt", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:polished_basalt[axis=x]": { + "bedrock_identifier": "minecraft:polished_basalt", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:polished_basalt[axis=y]": { + "bedrock_identifier": "minecraft:polished_basalt", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:polished_basalt[axis=z]": { + "bedrock_identifier": "minecraft:polished_basalt", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:soul_torch": { + "bedrock_identifier": "minecraft:soul_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "top" + } + }, + "minecraft:soul_wall_torch[facing=north]": { + "bedrock_identifier": "minecraft:soul_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:soul_torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "south" + } + }, + "minecraft:soul_wall_torch[facing=south]": { + "bedrock_identifier": "minecraft:soul_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:soul_torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "north" + } + }, + "minecraft:soul_wall_torch[facing=west]": { + "bedrock_identifier": "minecraft:soul_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:soul_torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "east" + } + }, + "minecraft:soul_wall_torch[facing=east]": { + "bedrock_identifier": "minecraft:soul_torch", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:soul_torch", + "can_break_with_hand": true, + "bedrock_states": { + "torch_facing_direction": "west" + } + }, + "minecraft:glowstone": { + "bedrock_identifier": "minecraft:glowstone", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:nether_portal[axis=x]": { + "bedrock_identifier": "minecraft:portal", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "pick_item": "minecraft:air", + "can_break_with_hand": true, + "bedrock_states": { + "portal_axis": "x" + } + }, + "minecraft:nether_portal[axis=z]": { + "bedrock_identifier": "minecraft:portal", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "pick_item": "minecraft:air", + "can_break_with_hand": true, + "bedrock_states": { + "portal_axis": "z" + } + }, + "minecraft:carved_pumpkin[facing=north]": { + "bedrock_identifier": "minecraft:carved_pumpkin", + "block_hardness": 1.0, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:carved_pumpkin[facing=south]": { + "bedrock_identifier": "minecraft:carved_pumpkin", + "block_hardness": 1.0, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:carved_pumpkin[facing=west]": { + "bedrock_identifier": "minecraft:carved_pumpkin", + "block_hardness": 1.0, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:carved_pumpkin[facing=east]": { + "bedrock_identifier": "minecraft:carved_pumpkin", + "block_hardness": 1.0, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:jack_o_lantern[facing=north]": { + "bedrock_identifier": "minecraft:lit_pumpkin", + "block_hardness": 1.0, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:jack_o_lantern[facing=south]": { + "bedrock_identifier": "minecraft:lit_pumpkin", + "block_hardness": 1.0, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:jack_o_lantern[facing=west]": { + "bedrock_identifier": "minecraft:lit_pumpkin", + "block_hardness": 1.0, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:jack_o_lantern[facing=east]": { + "bedrock_identifier": "minecraft:lit_pumpkin", + "block_hardness": 1.0, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:cake[bites=0]": { + "bedrock_identifier": "minecraft:cake", + "block_hardness": 0.5, + "collision_index": 83, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "bite_counter": 0 + } + }, + "minecraft:cake[bites=1]": { + "bedrock_identifier": "minecraft:cake", + "block_hardness": 0.5, + "collision_index": 84, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "bite_counter": 1 + } + }, + "minecraft:cake[bites=2]": { + "bedrock_identifier": "minecraft:cake", + "block_hardness": 0.5, + "collision_index": 85, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "bite_counter": 2 + } + }, + "minecraft:cake[bites=3]": { + "bedrock_identifier": "minecraft:cake", + "block_hardness": 0.5, + "collision_index": 86, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "bite_counter": 3 + } + }, + "minecraft:cake[bites=4]": { + "bedrock_identifier": "minecraft:cake", + "block_hardness": 0.5, + "collision_index": 87, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "bite_counter": 4 + } + }, + "minecraft:cake[bites=5]": { + "bedrock_identifier": "minecraft:cake", + "block_hardness": 0.5, + "collision_index": 88, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "bite_counter": 5 + } + }, + "minecraft:cake[bites=6]": { + "bedrock_identifier": "minecraft:cake", + "block_hardness": 0.5, + "collision_index": 89, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "bite_counter": 6 + } + }, + "minecraft:repeater[delay=1,facing=north,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=1,facing=north,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=1,facing=north,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=1,facing=north,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=1,facing=south,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=1,facing=south,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=1,facing=south,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=1,facing=south,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=1,facing=west,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=1,facing=west,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=1,facing=west,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=1,facing=west,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=1,facing=east,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=1,facing=east,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=1,facing=east,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=1,facing=east,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=2,facing=north,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=2,facing=north,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=2,facing=north,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=2,facing=north,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=2,facing=south,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=2,facing=south,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=2,facing=south,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=2,facing=south,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=2,facing=west,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=2,facing=west,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=2,facing=west,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=2,facing=west,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=2,facing=east,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=2,facing=east,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=2,facing=east,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=2,facing=east,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=3,facing=north,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=3,facing=north,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=3,facing=north,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=3,facing=north,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=3,facing=south,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=3,facing=south,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=3,facing=south,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=3,facing=south,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=3,facing=west,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=3,facing=west,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=3,facing=west,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=3,facing=west,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=3,facing=east,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=3,facing=east,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=3,facing=east,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=3,facing=east,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=4,facing=north,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=4,facing=north,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=4,facing=north,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=4,facing=north,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:repeater[delay=4,facing=south,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=4,facing=south,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=4,facing=south,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=4,facing=south,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:repeater[delay=4,facing=west,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=4,facing=west,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=4,facing=west,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=4,facing=west,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:repeater[delay=4,facing=east,locked=true,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=4,facing=east,locked=true,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=4,facing=east,locked=false,powered=true]": { + "bedrock_identifier": "minecraft:powered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:repeater[delay=4,facing=east,locked=false,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_repeater", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "repeater_delay": 3, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:white_stained_glass": { + "bedrock_identifier": "minecraft:white_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass": { + "bedrock_identifier": "minecraft:orange_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass": { + "bedrock_identifier": "minecraft:magenta_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass": { + "bedrock_identifier": "minecraft:light_blue_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass": { + "bedrock_identifier": "minecraft:yellow_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass": { + "bedrock_identifier": "minecraft:lime_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass": { + "bedrock_identifier": "minecraft:pink_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass": { + "bedrock_identifier": "minecraft:gray_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass": { + "bedrock_identifier": "minecraft:light_gray_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass": { + "bedrock_identifier": "minecraft:cyan_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass": { + "bedrock_identifier": "minecraft:purple_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass": { + "bedrock_identifier": "minecraft:blue_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass": { + "bedrock_identifier": "minecraft:brown_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass": { + "bedrock_identifier": "minecraft:green_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass": { + "bedrock_identifier": "minecraft:red_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass": { + "bedrock_identifier": "minecraft:black_stained_glass", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:birch_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:cherry_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "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": 90, + "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": 90, + "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": 90, + "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": 90, + "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": 91, + "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": 91, + "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": 91, + "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": 91, + "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": 90, + "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": 90, + "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": 90, + "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": 90, + "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": 91, + "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": 91, + "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": 91, + "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": 91, + "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": 90, + "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": 90, + "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": 90, + "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": 90, + "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": 91, + "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": 91, + "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": 91, + "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": 91, + "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": 90, + "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": 90, + "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": 90, + "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": 90, + "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": 91, + "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": 91, + "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": 91, + "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": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "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, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_brick_type": "default" + } + }, + "minecraft:mossy_stone_bricks": { + "bedrock_identifier": "minecraft:stonebrick", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_brick_type": "mossy" + } + }, + "minecraft:cracked_stone_bricks": { + "bedrock_identifier": "minecraft:stonebrick", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_brick_type": "cracked" + } + }, + "minecraft:chiseled_stone_bricks": { + "bedrock_identifier": "minecraft:stonebrick", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "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, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "monster_egg_stone_type": "stone" + } + }, + "minecraft:infested_cobblestone": { + "bedrock_identifier": "minecraft:monster_egg", + "block_hardness": 1.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "monster_egg_stone_type": "cobblestone" + } + }, + "minecraft:infested_stone_bricks": { + "bedrock_identifier": "minecraft:monster_egg", + "block_hardness": 0.75, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "monster_egg_stone_type": "stone_brick" + } + }, + "minecraft:infested_mossy_stone_bricks": { + "bedrock_identifier": "minecraft:monster_egg", + "block_hardness": 0.75, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "monster_egg_stone_type": "mossy_stone_brick" + } + }, + "minecraft:infested_cracked_stone_bricks": { + "bedrock_identifier": "minecraft:monster_egg", + "block_hardness": 0.75, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "monster_egg_stone_type": "cracked_stone_brick" + } + }, + "minecraft:infested_chiseled_stone_bricks": { + "bedrock_identifier": "minecraft:monster_egg", + "block_hardness": 0.75, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "monster_egg_stone_type": "chiseled_stone_brick" + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 3 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 9 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 6 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 1 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 2 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 7 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 8 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 4 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 5 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:brown_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 0 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=true,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 3 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 9 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 6 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 1 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 2 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 7 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 8 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 4 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 5 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 14 + } + }, + "minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 0 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=true,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 15 + } + }, + "minecraft:mushroom_stem[down=false,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:red_mushroom_block", + "block_hardness": 0.2, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "huge_mushroom_bits": 0 + } + }, + "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 92, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 93, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 92, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 93, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 94, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 95, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 94, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 95, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 96, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 97, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 96, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 97, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 98, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 99, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 98, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 99, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 100, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 101, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 100, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 101, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 102, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 103, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 102, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 103, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 104, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 105, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 104, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 105, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 106, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 107, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 106, + "can_break_with_hand": false + }, + "minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:iron_bars", + "block_hardness": 5.0, + "collision_index": 107, + "can_break_with_hand": false + }, + "minecraft:chain[axis=x,waterlogged=true]": { + "bedrock_identifier": "minecraft:chain", + "block_hardness": 5.0, + "collision_index": 108, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:chain[axis=x,waterlogged=false]": { + "bedrock_identifier": "minecraft:chain", + "block_hardness": 5.0, + "collision_index": 108, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:chain[axis=y,waterlogged=true]": { + "bedrock_identifier": "minecraft:chain", + "block_hardness": 5.0, + "collision_index": 109, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:chain[axis=y,waterlogged=false]": { + "bedrock_identifier": "minecraft:chain", + "block_hardness": 5.0, + "collision_index": 109, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:chain[axis=z,waterlogged=true]": { + "bedrock_identifier": "minecraft:chain", + "block_hardness": 5.0, + "collision_index": 110, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:chain[axis=z,waterlogged=false]": { + "bedrock_identifier": "minecraft:chain", + "block_hardness": 5.0, + "collision_index": 110, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:pumpkin": { + "bedrock_identifier": "minecraft:pumpkin", + "block_hardness": 1.0, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:melon": { + "bedrock_identifier": "minecraft:melon_block", + "block_hardness": 1.0, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:attached_pumpkin_stem[facing=north]": { + "bedrock_identifier": "minecraft:pumpkin_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pumpkin_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7, + "facing_direction": 2 + } + }, + "minecraft:attached_pumpkin_stem[facing=south]": { + "bedrock_identifier": "minecraft:pumpkin_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pumpkin_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7, + "facing_direction": 3 + } + }, + "minecraft:attached_pumpkin_stem[facing=west]": { + "bedrock_identifier": "minecraft:pumpkin_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pumpkin_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7, + "facing_direction": 4 + } + }, + "minecraft:attached_pumpkin_stem[facing=east]": { + "bedrock_identifier": "minecraft:pumpkin_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pumpkin_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7, + "facing_direction": 5 + } + }, + "minecraft:attached_melon_stem[facing=north]": { + "bedrock_identifier": "minecraft:melon_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:melon_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7, + "facing_direction": 2 + } + }, + "minecraft:attached_melon_stem[facing=south]": { + "bedrock_identifier": "minecraft:melon_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:melon_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7, + "facing_direction": 3 + } + }, + "minecraft:attached_melon_stem[facing=west]": { + "bedrock_identifier": "minecraft:melon_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:melon_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7, + "facing_direction": 4 + } + }, + "minecraft:attached_melon_stem[facing=east]": { + "bedrock_identifier": "minecraft:melon_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:melon_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7, + "facing_direction": 5 + } + }, + "minecraft:pumpkin_stem[age=0]": { + "bedrock_identifier": "minecraft:pumpkin_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pumpkin_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 0, + "facing_direction": 0 + } + }, + "minecraft:pumpkin_stem[age=1]": { + "bedrock_identifier": "minecraft:pumpkin_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pumpkin_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 1, + "facing_direction": 0 + } + }, + "minecraft:pumpkin_stem[age=2]": { + "bedrock_identifier": "minecraft:pumpkin_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pumpkin_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 2, + "facing_direction": 0 + } + }, + "minecraft:pumpkin_stem[age=3]": { + "bedrock_identifier": "minecraft:pumpkin_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pumpkin_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 3, + "facing_direction": 0 + } + }, + "minecraft:pumpkin_stem[age=4]": { + "bedrock_identifier": "minecraft:pumpkin_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pumpkin_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 4, + "facing_direction": 0 + } + }, + "minecraft:pumpkin_stem[age=5]": { + "bedrock_identifier": "minecraft:pumpkin_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pumpkin_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 5, + "facing_direction": 0 + } + }, + "minecraft:pumpkin_stem[age=6]": { + "bedrock_identifier": "minecraft:pumpkin_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pumpkin_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 6, + "facing_direction": 0 + } + }, + "minecraft:pumpkin_stem[age=7]": { + "bedrock_identifier": "minecraft:pumpkin_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pumpkin_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7, + "facing_direction": 0 + } + }, + "minecraft:melon_stem[age=0]": { + "bedrock_identifier": "minecraft:melon_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:melon_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 0, + "facing_direction": 0 + } + }, + "minecraft:melon_stem[age=1]": { + "bedrock_identifier": "minecraft:melon_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:melon_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 1, + "facing_direction": 0 + } + }, + "minecraft:melon_stem[age=2]": { + "bedrock_identifier": "minecraft:melon_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:melon_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 2, + "facing_direction": 0 + } + }, + "minecraft:melon_stem[age=3]": { + "bedrock_identifier": "minecraft:melon_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:melon_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 3, + "facing_direction": 0 + } + }, + "minecraft:melon_stem[age=4]": { + "bedrock_identifier": "minecraft:melon_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:melon_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 4, + "facing_direction": 0 + } + }, + "minecraft:melon_stem[age=5]": { + "bedrock_identifier": "minecraft:melon_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:melon_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 5, + "facing_direction": 0 + } + }, + "minecraft:melon_stem[age=6]": { + "bedrock_identifier": "minecraft:melon_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:melon_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 6, + "facing_direction": 0 + } + }, + "minecraft:melon_stem[age=7]": { + "bedrock_identifier": "minecraft:melon_stem", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:melon_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7, + "facing_direction": 0 + } + }, + "minecraft:vine[east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 15 + } + }, + "minecraft:vine[east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 13 + } + }, + "minecraft:vine[east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 15 + } + }, + "minecraft:vine[east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 13 + } + }, + "minecraft:vine[east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 14 + } + }, + "minecraft:vine[east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 12 + } + }, + "minecraft:vine[east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 14 + } + }, + "minecraft:vine[east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 12 + } + }, + "minecraft:vine[east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 11 + } + }, + "minecraft:vine[east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 9 + } + }, + "minecraft:vine[east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 11 + } + }, + "minecraft:vine[east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 9 + } + }, + "minecraft:vine[east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 10 + } + }, + "minecraft:vine[east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 8 + } + }, + "minecraft:vine[east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 10 + } + }, + "minecraft:vine[east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 8 + } + }, + "minecraft:vine[east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 7 + } + }, + "minecraft:vine[east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 5 + } + }, + "minecraft:vine[east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 7 + } + }, + "minecraft:vine[east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 5 + } + }, + "minecraft:vine[east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 6 + } + }, + "minecraft:vine[east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 4 + } + }, + "minecraft:vine[east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 6 + } + }, + "minecraft:vine[east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 4 + } + }, + "minecraft:vine[east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 3 + } + }, + "minecraft:vine[east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 1 + } + }, + "minecraft:vine[east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 3 + } + }, + "minecraft:vine[east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 1 + } + }, + "minecraft:vine[east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 2 + } + }, + "minecraft:vine[east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 0 + } + }, + "minecraft:vine[east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 2 + } + }, + "minecraft:vine[east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:vine", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "vine_direction_bits": 0 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 63 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 55 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 63 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 55 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 61 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 53 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 61 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 53 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 59 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 51 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 59 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 51 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 57 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 49 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 57 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 49 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 47 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 39 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 47 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 39 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 45 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 37 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 45 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 37 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 43 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 35 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 43 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 35 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 41 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 33 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 41 + } + }, + "minecraft:glow_lichen[down=true,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 33 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 31 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 23 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 31 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 23 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 29 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 21 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 29 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 21 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 27 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 19 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 27 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 19 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 25 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 17 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 25 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 17 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 15 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 7 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 15 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 7 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 13 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 5 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 13 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 5 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 11 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 3 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 11 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 3 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 9 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 1 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 9 + } + }, + "minecraft:glow_lichen[down=true,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 1 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 62 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 54 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 62 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 54 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 60 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 52 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 60 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 52 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 58 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 50 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 58 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 50 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 56 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 48 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 56 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=true,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 48 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 46 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 38 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 46 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 38 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 44 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 36 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 44 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 36 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 42 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 34 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 42 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 34 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 40 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 32 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 40 + } + }, + "minecraft:glow_lichen[down=false,east=true,north=false,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 32 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 30 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 22 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 30 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 22 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 28 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 20 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 28 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 20 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 26 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 18 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 26 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 18 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 24 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 16 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 24 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=true,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 16 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 14 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 6 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 14 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 6 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 12 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 4 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 12 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=true,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 4 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 10 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 2 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 10 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 2 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 8 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 0 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 8 + } + }, + "minecraft:glow_lichen[down=false,east=false,north=false,south=false,up=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:glow_lichen", + "block_hardness": 0.2, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 0 + } + }, + "minecraft:oak_fence_gate[facing=north,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:oak_fence_gate[facing=north,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:oak_fence_gate[facing=north,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:oak_fence_gate[facing=south,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:oak_fence_gate[facing=south,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:oak_fence_gate[facing=west,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:oak_fence_gate[facing=west,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:oak_fence_gate[facing=east,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:oak_fence_gate[facing=east,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:brick_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "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, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:lily_pad": { + "bedrock_identifier": "minecraft:waterlily", + "block_hardness": 0.0, + "collision_index": 111, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:nether_bricks": { + "bedrock_identifier": "minecraft:nether_brick", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": false + }, + "minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:nether_brick_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": false + }, + "minecraft:nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:nether_wart[age=0]": { + "bedrock_identifier": "minecraft:nether_wart", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:nether_wart[age=1]": { + "bedrock_identifier": "minecraft:nether_wart", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:nether_wart[age=2]": { + "bedrock_identifier": "minecraft:nether_wart", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:nether_wart[age=3]": { + "bedrock_identifier": "minecraft:nether_wart", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:enchanting_table": { + "bedrock_identifier": "minecraft:enchanting_table", + "block_hardness": 5.0, + "collision_index": 10, + "has_block_entity": true, + "can_break_with_hand": false + }, + "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=true]": { + "bedrock_identifier": "minecraft:brewing_stand", + "block_hardness": 0.5, + "collision_index": 112, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "brewing_stand_slot_c_bit": true, + "brewing_stand_slot_a_bit": true, + "brewing_stand_slot_b_bit": true + } + }, + "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false]": { + "bedrock_identifier": "minecraft:brewing_stand", + "block_hardness": 0.5, + "collision_index": 112, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "brewing_stand_slot_c_bit": false, + "brewing_stand_slot_a_bit": true, + "brewing_stand_slot_b_bit": true + } + }, + "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true]": { + "bedrock_identifier": "minecraft:brewing_stand", + "block_hardness": 0.5, + "collision_index": 112, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "brewing_stand_slot_c_bit": true, + "brewing_stand_slot_a_bit": true, + "brewing_stand_slot_b_bit": false + } + }, + "minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false]": { + "bedrock_identifier": "minecraft:brewing_stand", + "block_hardness": 0.5, + "collision_index": 112, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "brewing_stand_slot_c_bit": false, + "brewing_stand_slot_a_bit": true, + "brewing_stand_slot_b_bit": false + } + }, + "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true]": { + "bedrock_identifier": "minecraft:brewing_stand", + "block_hardness": 0.5, + "collision_index": 112, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "brewing_stand_slot_c_bit": true, + "brewing_stand_slot_a_bit": false, + "brewing_stand_slot_b_bit": true + } + }, + "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false]": { + "bedrock_identifier": "minecraft:brewing_stand", + "block_hardness": 0.5, + "collision_index": 112, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "brewing_stand_slot_c_bit": false, + "brewing_stand_slot_a_bit": false, + "brewing_stand_slot_b_bit": true + } + }, + "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true]": { + "bedrock_identifier": "minecraft:brewing_stand", + "block_hardness": 0.5, + "collision_index": 112, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "brewing_stand_slot_c_bit": true, + "brewing_stand_slot_a_bit": false, + "brewing_stand_slot_b_bit": false + } + }, + "minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false]": { + "bedrock_identifier": "minecraft:brewing_stand", + "block_hardness": 0.5, + "collision_index": 112, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "brewing_stand_slot_c_bit": false, + "brewing_stand_slot_a_bit": false, + "brewing_stand_slot_b_bit": false + } + }, + "minecraft:cauldron": { + "bedrock_identifier": "minecraft:cauldron", + "block_hardness": 2.0, + "collision_index": 113, + "can_break_with_hand": false, + "bedrock_states": { + "cauldron_liquid": "water", + "fill_level": 0 + } + }, + "minecraft:water_cauldron[level=1]": { + "bedrock_identifier": "minecraft:cauldron", + "block_hardness": 2.0, + "collision_index": 113, + "pick_item": "minecraft:cauldron", + "can_break_with_hand": false, + "bedrock_states": { + "cauldron_liquid": "water", + "fill_level": 3 + } + }, + "minecraft:water_cauldron[level=2]": { + "bedrock_identifier": "minecraft:cauldron", + "block_hardness": 2.0, + "collision_index": 113, + "pick_item": "minecraft:cauldron", + "can_break_with_hand": false, + "bedrock_states": { + "cauldron_liquid": "water", + "fill_level": 4 + } + }, + "minecraft:water_cauldron[level=3]": { + "bedrock_identifier": "minecraft:cauldron", + "block_hardness": 2.0, + "collision_index": 113, + "pick_item": "minecraft:cauldron", + "can_break_with_hand": false, + "bedrock_states": { + "cauldron_liquid": "water", + "fill_level": 6 + } + }, + "minecraft:lava_cauldron": { + "bedrock_identifier": "minecraft:cauldron", + "block_hardness": 2.0, + "collision_index": 113, + "pick_item": "minecraft:cauldron", + "can_break_with_hand": false, + "bedrock_states": { + "cauldron_liquid": "lava", + "fill_level": 6 + } + }, + "minecraft:powder_snow_cauldron[level=1]": { + "bedrock_identifier": "minecraft:cauldron", + "block_hardness": 2.0, + "collision_index": 113, + "pick_item": "minecraft:cauldron", + "can_break_with_hand": false, + "bedrock_states": { + "fill_level": 3, + "cauldron_liquid": "powder_snow" + } + }, + "minecraft:powder_snow_cauldron[level=2]": { + "bedrock_identifier": "minecraft:cauldron", + "block_hardness": 2.0, + "collision_index": 113, + "pick_item": "minecraft:cauldron", + "can_break_with_hand": false, + "bedrock_states": { + "fill_level": 4, + "cauldron_liquid": "powder_snow" + } + }, + "minecraft:powder_snow_cauldron[level=3]": { + "bedrock_identifier": "minecraft:cauldron", + "block_hardness": 2.0, + "collision_index": 113, + "pick_item": "minecraft:cauldron", + "can_break_with_hand": false, + "bedrock_states": { + "fill_level": 6, + "cauldron_liquid": "powder_snow" + } + }, + "minecraft:end_portal": { + "bedrock_identifier": "minecraft:end_portal", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "has_block_entity": true, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:end_portal_frame[eye=true,facing=north]": { + "bedrock_identifier": "minecraft:end_portal_frame", + "block_hardness": -1.0, + "collision_index": 114, + "can_break_with_hand": true, + "bedrock_states": { + "end_portal_eye_bit": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:end_portal_frame[eye=true,facing=south]": { + "bedrock_identifier": "minecraft:end_portal_frame", + "block_hardness": -1.0, + "collision_index": 114, + "can_break_with_hand": true, + "bedrock_states": { + "end_portal_eye_bit": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:end_portal_frame[eye=true,facing=west]": { + "bedrock_identifier": "minecraft:end_portal_frame", + "block_hardness": -1.0, + "collision_index": 114, + "can_break_with_hand": true, + "bedrock_states": { + "end_portal_eye_bit": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:end_portal_frame[eye=true,facing=east]": { + "bedrock_identifier": "minecraft:end_portal_frame", + "block_hardness": -1.0, + "collision_index": 114, + "can_break_with_hand": true, + "bedrock_states": { + "end_portal_eye_bit": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:end_portal_frame[eye=false,facing=north]": { + "bedrock_identifier": "minecraft:end_portal_frame", + "block_hardness": -1.0, + "collision_index": 115, + "can_break_with_hand": true, + "bedrock_states": { + "end_portal_eye_bit": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:end_portal_frame[eye=false,facing=south]": { + "bedrock_identifier": "minecraft:end_portal_frame", + "block_hardness": -1.0, + "collision_index": 115, + "can_break_with_hand": true, + "bedrock_states": { + "end_portal_eye_bit": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:end_portal_frame[eye=false,facing=west]": { + "bedrock_identifier": "minecraft:end_portal_frame", + "block_hardness": -1.0, + "collision_index": 115, + "can_break_with_hand": true, + "bedrock_states": { + "end_portal_eye_bit": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:end_portal_frame[eye=false,facing=east]": { + "bedrock_identifier": "minecraft:end_portal_frame", + "block_hardness": -1.0, + "collision_index": 115, + "can_break_with_hand": true, + "bedrock_states": { + "end_portal_eye_bit": false, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:end_stone": { + "bedrock_identifier": "minecraft:end_stone", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:dragon_egg": { + "bedrock_identifier": "minecraft:dragon_egg", + "block_hardness": 3.0, + "collision_index": 116, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:redstone_lamp[lit=true]": { + "bedrock_identifier": "minecraft:lit_redstone_lamp", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:redstone_lamp[lit=false]": { + "bedrock_identifier": "minecraft:redstone_lamp", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:cocoa[age=0,facing=north]": { + "bedrock_identifier": "minecraft:cocoa", + "block_hardness": 0.2, + "collision_index": 117, + "piston_behavior": "destroy", + "pick_item": "minecraft:cocoa_beans", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0, + "direction": 2 + } + }, + "minecraft:cocoa[age=0,facing=south]": { + "bedrock_identifier": "minecraft:cocoa", + "block_hardness": 0.2, + "collision_index": 118, + "piston_behavior": "destroy", + "pick_item": "minecraft:cocoa_beans", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0, + "direction": 0 + } + }, + "minecraft:cocoa[age=0,facing=west]": { + "bedrock_identifier": "minecraft:cocoa", + "block_hardness": 0.2, + "collision_index": 119, + "piston_behavior": "destroy", + "pick_item": "minecraft:cocoa_beans", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0, + "direction": 1 + } + }, + "minecraft:cocoa[age=0,facing=east]": { + "bedrock_identifier": "minecraft:cocoa", + "block_hardness": 0.2, + "collision_index": 120, + "piston_behavior": "destroy", + "pick_item": "minecraft:cocoa_beans", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0, + "direction": 3 + } + }, + "minecraft:cocoa[age=1,facing=north]": { + "bedrock_identifier": "minecraft:cocoa", + "block_hardness": 0.2, + "collision_index": 121, + "piston_behavior": "destroy", + "pick_item": "minecraft:cocoa_beans", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1, + "direction": 2 + } + }, + "minecraft:cocoa[age=1,facing=south]": { + "bedrock_identifier": "minecraft:cocoa", + "block_hardness": 0.2, + "collision_index": 122, + "piston_behavior": "destroy", + "pick_item": "minecraft:cocoa_beans", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1, + "direction": 0 + } + }, + "minecraft:cocoa[age=1,facing=west]": { + "bedrock_identifier": "minecraft:cocoa", + "block_hardness": 0.2, + "collision_index": 123, + "piston_behavior": "destroy", + "pick_item": "minecraft:cocoa_beans", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1, + "direction": 1 + } + }, + "minecraft:cocoa[age=1,facing=east]": { + "bedrock_identifier": "minecraft:cocoa", + "block_hardness": 0.2, + "collision_index": 124, + "piston_behavior": "destroy", + "pick_item": "minecraft:cocoa_beans", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1, + "direction": 3 + } + }, + "minecraft:cocoa[age=2,facing=north]": { + "bedrock_identifier": "minecraft:cocoa", + "block_hardness": 0.2, + "collision_index": 125, + "piston_behavior": "destroy", + "pick_item": "minecraft:cocoa_beans", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2, + "direction": 2 + } + }, + "minecraft:cocoa[age=2,facing=south]": { + "bedrock_identifier": "minecraft:cocoa", + "block_hardness": 0.2, + "collision_index": 126, + "piston_behavior": "destroy", + "pick_item": "minecraft:cocoa_beans", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2, + "direction": 0 + } + }, + "minecraft:cocoa[age=2,facing=west]": { + "bedrock_identifier": "minecraft:cocoa", + "block_hardness": 0.2, + "collision_index": 127, + "piston_behavior": "destroy", + "pick_item": "minecraft:cocoa_beans", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2, + "direction": 1 + } + }, + "minecraft:cocoa[age=2,facing=east]": { + "bedrock_identifier": "minecraft:cocoa", + "block_hardness": 0.2, + "collision_index": 128, + "piston_behavior": "destroy", + "pick_item": "minecraft:cocoa_beans", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2, + "direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:emerald_ore": { + "bedrock_identifier": "minecraft:emerald_ore", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:deepslate_emerald_ore": { + "bedrock_identifier": "minecraft:deepslate_emerald_ore", + "block_hardness": 4.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:ender_chest[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:ender_chest", + "block_hardness": 22.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:ender_chest[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:ender_chest", + "block_hardness": 22.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:ender_chest[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:ender_chest", + "block_hardness": 22.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:ender_chest[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:ender_chest", + "block_hardness": 22.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:ender_chest[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:ender_chest", + "block_hardness": 22.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:ender_chest[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:ender_chest", + "block_hardness": 22.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:ender_chest[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:ender_chest", + "block_hardness": 22.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:ender_chest[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:ender_chest", + "block_hardness": 22.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:tripwire_hook[attached=true,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "attached_bit": true, + "direction": 2 + } + }, + "minecraft:tripwire_hook[attached=true,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "attached_bit": true, + "direction": 2 + } + }, + "minecraft:tripwire_hook[attached=true,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "attached_bit": true, + "direction": 0 + } + }, + "minecraft:tripwire_hook[attached=true,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "attached_bit": true, + "direction": 0 + } + }, + "minecraft:tripwire_hook[attached=true,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "attached_bit": true, + "direction": 1 + } + }, + "minecraft:tripwire_hook[attached=true,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "attached_bit": true, + "direction": 1 + } + }, + "minecraft:tripwire_hook[attached=true,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "attached_bit": true, + "direction": 3 + } + }, + "minecraft:tripwire_hook[attached=true,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "attached_bit": true, + "direction": 3 + } + }, + "minecraft:tripwire_hook[attached=false,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "attached_bit": false, + "direction": 2 + } + }, + "minecraft:tripwire_hook[attached=false,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "attached_bit": false, + "direction": 2 + } + }, + "minecraft:tripwire_hook[attached=false,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "attached_bit": false, + "direction": 0 + } + }, + "minecraft:tripwire_hook[attached=false,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "attached_bit": false, + "direction": 0 + } + }, + "minecraft:tripwire_hook[attached=false,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "attached_bit": false, + "direction": 1 + } + }, + "minecraft:tripwire_hook[attached=false,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "attached_bit": false, + "direction": 1 + } + }, + "minecraft:tripwire_hook[attached=false,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "attached_bit": false, + "direction": 3 + } + }, + "minecraft:tripwire_hook[attached=false,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:tripwire_hook", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "attached_bit": false, + "direction": 3 + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=true,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=true,north=false,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=true,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=true,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=true,north=false,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=true,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": true + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=true,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=true,north=false,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=true,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": true, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=true,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=true,north=false,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=true,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=true,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=true,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=false,west=true]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=false,west=false]": { + "bedrock_identifier": "minecraft:trip_wire", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:string", + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "suspended_bit": true, + "disarmed_bit": false, + "attached_bit": false + } + }, + "minecraft:emerald_block": { + "bedrock_identifier": "minecraft:emerald_block", + "block_hardness": 5.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:spruce_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:birch_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:jungle_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:command_block[conditional=true,facing=north]": { + "bedrock_identifier": "minecraft:command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 2 + } + }, + "minecraft:command_block[conditional=true,facing=east]": { + "bedrock_identifier": "minecraft:command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 5 + } + }, + "minecraft:command_block[conditional=true,facing=south]": { + "bedrock_identifier": "minecraft:command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 3 + } + }, + "minecraft:command_block[conditional=true,facing=west]": { + "bedrock_identifier": "minecraft:command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 4 + } + }, + "minecraft:command_block[conditional=true,facing=up]": { + "bedrock_identifier": "minecraft:command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 1 + } + }, + "minecraft:command_block[conditional=true,facing=down]": { + "bedrock_identifier": "minecraft:command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 0 + } + }, + "minecraft:command_block[conditional=false,facing=north]": { + "bedrock_identifier": "minecraft:command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 2 + } + }, + "minecraft:command_block[conditional=false,facing=east]": { + "bedrock_identifier": "minecraft:command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 5 + } + }, + "minecraft:command_block[conditional=false,facing=south]": { + "bedrock_identifier": "minecraft:command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 3 + } + }, + "minecraft:command_block[conditional=false,facing=west]": { + "bedrock_identifier": "minecraft:command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 4 + } + }, + "minecraft:command_block[conditional=false,facing=up]": { + "bedrock_identifier": "minecraft:command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 1 + } + }, + "minecraft:command_block[conditional=false,facing=down]": { + "bedrock_identifier": "minecraft:command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 0 + } + }, + "minecraft:beacon": { + "bedrock_identifier": "minecraft:beacon", + "block_hardness": 3.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true + }, + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 129, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 129, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 144, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 144, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 144, + "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": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "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": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "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": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 144, + "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": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "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": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "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": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "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": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "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": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 148, + "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": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 148, + "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": "none", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 148, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 148, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 149, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 152, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 152, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 152, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 152, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 153, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 156, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 157, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "tall", + "wall_block_type": "cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:mossy_cobblestone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "mossy_cobblestone" + } + }, + "minecraft:flower_pot": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_torchflower": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:torchflower", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_oak_sapling": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:oak_sapling", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_spruce_sapling": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:spruce_sapling", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_birch_sapling": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:birch_sapling", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_jungle_sapling": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:jungle_sapling", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_acacia_sapling": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:acacia_sapling", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_cherry_sapling": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:cherry_sapling", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_dark_oak_sapling": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:dark_oak_sapling", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_mangrove_propagule": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "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, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:fern", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_dandelion": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:dandelion", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_poppy": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:poppy", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_blue_orchid": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:blue_orchid", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_allium": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:allium", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_azure_bluet": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:azure_bluet", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_red_tulip": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:red_tulip", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_orange_tulip": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:orange_tulip", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_white_tulip": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:white_tulip", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_pink_tulip": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:pink_tulip", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_oxeye_daisy": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:oxeye_daisy", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_cornflower": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:cornflower", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_lily_of_the_valley": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:lily_of_the_valley", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_wither_rose": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:wither_rose", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_red_mushroom": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:red_mushroom", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_brown_mushroom": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:brown_mushroom", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_dead_bush": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:dead_bush", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_cactus": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:cactus", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:carrots[age=0]": { + "bedrock_identifier": "minecraft:carrots", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:carrot", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 0 + } + }, + "minecraft:carrots[age=1]": { + "bedrock_identifier": "minecraft:carrots", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:carrot", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 1 + } + }, + "minecraft:carrots[age=2]": { + "bedrock_identifier": "minecraft:carrots", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:carrot", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 2 + } + }, + "minecraft:carrots[age=3]": { + "bedrock_identifier": "minecraft:carrots", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:carrot", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 3 + } + }, + "minecraft:carrots[age=4]": { + "bedrock_identifier": "minecraft:carrots", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:carrot", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 4 + } + }, + "minecraft:carrots[age=5]": { + "bedrock_identifier": "minecraft:carrots", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:carrot", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 5 + } + }, + "minecraft:carrots[age=6]": { + "bedrock_identifier": "minecraft:carrots", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:carrot", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 6 + } + }, + "minecraft:carrots[age=7]": { + "bedrock_identifier": "minecraft:carrots", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:carrot", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7 + } + }, + "minecraft:potatoes[age=0]": { + "bedrock_identifier": "minecraft:potatoes", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:potato", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 0 + } + }, + "minecraft:potatoes[age=1]": { + "bedrock_identifier": "minecraft:potatoes", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:potato", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 1 + } + }, + "minecraft:potatoes[age=2]": { + "bedrock_identifier": "minecraft:potatoes", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:potato", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 2 + } + }, + "minecraft:potatoes[age=3]": { + "bedrock_identifier": "minecraft:potatoes", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:potato", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 3 + } + }, + "minecraft:potatoes[age=4]": { + "bedrock_identifier": "minecraft:potatoes", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:potato", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 4 + } + }, + "minecraft:potatoes[age=5]": { + "bedrock_identifier": "minecraft:potatoes", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:potato", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 5 + } + }, + "minecraft:potatoes[age=6]": { + "bedrock_identifier": "minecraft:potatoes", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:potato", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 6 + } + }, + "minecraft:potatoes[age=7]": { + "bedrock_identifier": "minecraft:potatoes", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:potato", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7 + } + }, + "minecraft:oak_button[face=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:wooden_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:oak_button[face=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:wooden_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:spruce_button[face=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:spruce_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:spruce_button[face=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:spruce_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:birch_button[face=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:birch_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:birch_button[face=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:birch_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:jungle_button[face=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:jungle_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:jungle_button[face=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:jungle_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:acacia_button[face=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:acacia_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:acacia_button[face=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:acacia_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:cherry_button[face=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_button[face=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:dark_oak_button[face=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_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:dark_oak_button[face=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_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=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:bamboo_button[face=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_button[face=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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[powered=true,rotation=0]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 0, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=1]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 1, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=2]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 2, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=3]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 3, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=4]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 4, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=5]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 5, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=6]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 6, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=7]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 7, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=8]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 8, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=9]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 9, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=10]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 10, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=11]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 11, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=12]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 12, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=13]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 13, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=14]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 14, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=true,rotation=15]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 15, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=0]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 0, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=1]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 1, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=2]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 2, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=3]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 3, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=4]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 4, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=5]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 5, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=6]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 6, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=7]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 7, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=8]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 8, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=9]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 9, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=10]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 10, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=11]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 11, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=12]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 12, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=13]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 13, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=14]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 14, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_skull[powered=false,rotation=15]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 15, + "variation": 0, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:skeleton_wall_skull[facing=north,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 162, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:skeleton_skull", + "can_break_with_hand": true, + "variation": 0, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:skeleton_wall_skull[facing=north,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 162, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:skeleton_skull", + "can_break_with_hand": true, + "variation": 0, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:skeleton_wall_skull[facing=south,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 163, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:skeleton_skull", + "can_break_with_hand": true, + "variation": 0, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:skeleton_wall_skull[facing=south,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 163, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:skeleton_skull", + "can_break_with_hand": true, + "variation": 0, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:skeleton_wall_skull[facing=west,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 164, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:skeleton_skull", + "can_break_with_hand": true, + "variation": 0, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:skeleton_wall_skull[facing=west,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 164, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:skeleton_skull", + "can_break_with_hand": true, + "variation": 0, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:skeleton_wall_skull[facing=east,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 165, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:skeleton_skull", + "can_break_with_hand": true, + "variation": 0, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:skeleton_wall_skull[facing=east,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 165, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:skeleton_skull", + "can_break_with_hand": true, + "variation": 0, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=0]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 0, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=1]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 1, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=2]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 2, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=3]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 3, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=4]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 4, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=5]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 5, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=6]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 6, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=7]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 7, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=8]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 8, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=9]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 9, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=10]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 10, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=11]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 11, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=12]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 12, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=13]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 13, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=14]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 14, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=true,rotation=15]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 15, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=0]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 0, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=1]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 1, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=2]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 2, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=3]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 3, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=4]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 4, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=5]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 5, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=6]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 6, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=7]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 7, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=8]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 8, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=9]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 9, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=10]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 10, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=11]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 11, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=12]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 12, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=13]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 13, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=14]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 14, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_skull[powered=false,rotation=15]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 15, + "variation": 1, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:wither_skeleton_wall_skull[facing=north,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 162, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:wither_skeleton_skull", + "can_break_with_hand": true, + "variation": 1, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:wither_skeleton_wall_skull[facing=north,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 162, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:wither_skeleton_skull", + "can_break_with_hand": true, + "variation": 1, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:wither_skeleton_wall_skull[facing=south,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 163, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:wither_skeleton_skull", + "can_break_with_hand": true, + "variation": 1, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:wither_skeleton_wall_skull[facing=south,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 163, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:wither_skeleton_skull", + "can_break_with_hand": true, + "variation": 1, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:wither_skeleton_wall_skull[facing=west,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 164, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:wither_skeleton_skull", + "can_break_with_hand": true, + "variation": 1, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:wither_skeleton_wall_skull[facing=west,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 164, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:wither_skeleton_skull", + "can_break_with_hand": true, + "variation": 1, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:wither_skeleton_wall_skull[facing=east,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 165, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:wither_skeleton_skull", + "can_break_with_hand": true, + "variation": 1, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:wither_skeleton_wall_skull[facing=east,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 165, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:wither_skeleton_skull", + "can_break_with_hand": true, + "variation": 1, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:zombie_head[powered=true,rotation=0]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 0, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=1]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 1, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=2]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 2, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=3]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 3, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=4]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 4, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=5]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 5, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=6]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 6, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=7]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 7, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=8]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 8, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=9]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 9, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=10]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 10, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=11]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 11, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=12]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 12, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=13]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 13, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=14]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 14, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=true,rotation=15]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 15, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=0]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 0, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=1]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 1, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=2]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 2, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=3]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 3, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=4]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 4, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=5]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 5, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=6]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 6, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=7]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 7, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=8]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 8, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=9]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 9, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=10]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 10, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=11]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 11, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=12]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 12, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=13]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 13, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=14]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 14, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_head[powered=false,rotation=15]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 15, + "variation": 2, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:zombie_wall_head[facing=north,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 162, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:zombie_head", + "can_break_with_hand": true, + "variation": 2, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:zombie_wall_head[facing=north,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 162, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:zombie_head", + "can_break_with_hand": true, + "variation": 2, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:zombie_wall_head[facing=south,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 163, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:zombie_head", + "can_break_with_hand": true, + "variation": 2, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:zombie_wall_head[facing=south,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 163, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:zombie_head", + "can_break_with_hand": true, + "variation": 2, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:zombie_wall_head[facing=west,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 164, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:zombie_head", + "can_break_with_hand": true, + "variation": 2, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:zombie_wall_head[facing=west,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 164, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:zombie_head", + "can_break_with_hand": true, + "variation": 2, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:zombie_wall_head[facing=east,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 165, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:zombie_head", + "can_break_with_hand": true, + "variation": 2, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:zombie_wall_head[facing=east,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 165, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:zombie_head", + "can_break_with_hand": true, + "variation": 2, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:player_head[powered=true,rotation=0]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 0, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=1]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 1, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=2]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 2, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=3]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 3, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=4]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 4, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=5]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 5, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=6]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 6, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=7]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 7, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=8]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 8, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=9]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 9, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=10]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 10, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=11]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 11, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=12]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 12, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=13]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 13, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=14]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 14, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=true,rotation=15]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 15, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=0]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 0, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=1]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 1, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=2]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 2, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=3]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 3, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=4]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 4, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=5]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 5, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=6]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 6, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=7]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 7, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=8]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 8, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=9]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 9, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=10]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 10, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=11]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 11, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=12]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 12, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=13]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 13, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=14]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 14, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_head[powered=false,rotation=15]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 15, + "variation": 3, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:player_wall_head[facing=north,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 162, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:player_head", + "can_break_with_hand": true, + "variation": 3, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:player_wall_head[facing=north,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 162, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:player_head", + "can_break_with_hand": true, + "variation": 3, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:player_wall_head[facing=south,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 163, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:player_head", + "can_break_with_hand": true, + "variation": 3, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:player_wall_head[facing=south,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 163, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:player_head", + "can_break_with_hand": true, + "variation": 3, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:player_wall_head[facing=west,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 164, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:player_head", + "can_break_with_hand": true, + "variation": 3, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:player_wall_head[facing=west,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 164, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:player_head", + "can_break_with_hand": true, + "variation": 3, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:player_wall_head[facing=east,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 165, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:player_head", + "can_break_with_hand": true, + "variation": 3, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:player_wall_head[facing=east,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 165, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:player_head", + "can_break_with_hand": true, + "variation": 3, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:creeper_head[powered=true,rotation=0]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 0, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=1]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 1, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=2]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 2, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=3]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 3, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=4]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 4, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=5]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 5, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=6]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 6, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=7]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 7, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=8]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 8, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=9]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 9, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=10]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 10, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=11]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 11, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=12]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 12, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=13]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 13, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=14]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 14, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=true,rotation=15]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 15, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=0]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 0, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=1]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 1, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=2]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 2, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=3]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 3, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=4]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 4, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=5]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 5, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=6]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 6, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=7]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 7, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=8]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 8, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=9]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 9, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=10]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 10, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=11]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 11, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=12]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 12, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=13]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 13, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=14]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 14, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_head[powered=false,rotation=15]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 15, + "variation": 4, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:creeper_wall_head[facing=north,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 162, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:creeper_head", + "can_break_with_hand": true, + "variation": 4, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:creeper_wall_head[facing=north,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 162, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:creeper_head", + "can_break_with_hand": true, + "variation": 4, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:creeper_wall_head[facing=south,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 163, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:creeper_head", + "can_break_with_hand": true, + "variation": 4, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:creeper_wall_head[facing=south,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 163, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:creeper_head", + "can_break_with_hand": true, + "variation": 4, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:creeper_wall_head[facing=west,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 164, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:creeper_head", + "can_break_with_hand": true, + "variation": 4, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:creeper_wall_head[facing=west,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 164, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:creeper_head", + "can_break_with_hand": true, + "variation": 4, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:creeper_wall_head[facing=east,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 165, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:creeper_head", + "can_break_with_hand": true, + "variation": 4, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:creeper_wall_head[facing=east,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 165, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:creeper_head", + "can_break_with_hand": true, + "variation": 4, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:dragon_head[powered=true,rotation=0]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 0, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=1]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 1, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=2]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 2, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=3]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 3, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=4]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 4, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=5]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 5, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=6]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 6, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=7]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 7, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=8]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 8, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=9]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 9, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=10]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 10, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=11]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 11, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=12]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 12, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=13]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 13, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=14]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 14, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=true,rotation=15]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 15, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=0]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 0, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=1]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 1, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=2]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 2, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=3]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 3, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=4]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 4, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=5]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 5, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=6]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 6, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=7]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 7, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=8]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 8, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=9]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 9, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=10]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 10, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=11]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 11, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=12]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 12, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=13]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 13, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=14]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 14, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_head[powered=false,rotation=15]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 161, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 15, + "variation": 5, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:dragon_wall_head[facing=north,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 162, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:dragon_head", + "can_break_with_hand": true, + "variation": 5, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:dragon_wall_head[facing=north,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 162, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:dragon_head", + "can_break_with_hand": true, + "variation": 5, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:dragon_wall_head[facing=south,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 163, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:dragon_head", + "can_break_with_hand": true, + "variation": 5, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:dragon_wall_head[facing=south,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 163, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:dragon_head", + "can_break_with_hand": true, + "variation": 5, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:dragon_wall_head[facing=west,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 164, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:dragon_head", + "can_break_with_hand": true, + "variation": 5, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:dragon_wall_head[facing=west,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 164, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:dragon_head", + "can_break_with_hand": true, + "variation": 5, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:dragon_wall_head[facing=east,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 165, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:dragon_head", + "can_break_with_hand": true, + "variation": 5, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:dragon_wall_head[facing=east,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 165, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:dragon_head", + "can_break_with_hand": true, + "variation": 5, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:piglin_head[powered=true,rotation=0]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 0, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=1]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 1, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=2]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 2, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=3]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 3, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=4]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 4, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=5]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 5, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=6]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 6, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=7]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 7, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=8]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 8, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=9]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 9, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=10]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 10, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=11]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 11, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=12]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 12, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=13]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 13, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=14]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 14, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=true,rotation=15]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 15, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=0]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 0, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=1]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 1, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=2]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 2, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=3]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 3, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=4]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 4, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=5]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 5, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=6]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 6, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=7]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 7, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=8]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 8, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=9]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 9, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=10]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 10, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=11]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 11, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=12]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 12, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=13]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 13, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=14]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 14, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_head[powered=false,rotation=15]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 166, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "skull_rotation": 15, + "variation": 6, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:piglin_wall_head[facing=north,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 167, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:piglin_head", + "can_break_with_hand": true, + "variation": 6, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:piglin_wall_head[facing=north,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 167, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:piglin_head", + "can_break_with_hand": true, + "variation": 6, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:piglin_wall_head[facing=south,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 168, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:piglin_head", + "can_break_with_hand": true, + "variation": 6, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:piglin_wall_head[facing=south,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 168, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:piglin_head", + "can_break_with_hand": true, + "variation": 6, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:piglin_wall_head[facing=west,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 169, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:piglin_head", + "can_break_with_hand": true, + "variation": 6, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:piglin_wall_head[facing=west,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 169, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:piglin_head", + "can_break_with_hand": true, + "variation": 6, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:piglin_wall_head[facing=east,powered=true]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 170, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:piglin_head", + "can_break_with_hand": true, + "variation": 6, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:piglin_wall_head[facing=east,powered=false]": { + "bedrock_identifier": "minecraft:skull", + "block_hardness": 1.0, + "collision_index": 170, + "piston_behavior": "destroy", + "has_block_entity": true, + "pick_item": "minecraft:piglin_head", + "can_break_with_hand": true, + "variation": 6, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:anvil[facing=north]": { + "bedrock_identifier": "minecraft:anvil", + "block_hardness": 5.0, + "collision_index": 171, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "damage": "undamaged", + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:anvil[facing=south]": { + "bedrock_identifier": "minecraft:anvil", + "block_hardness": 5.0, + "collision_index": 171, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "damage": "undamaged", + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:anvil[facing=west]": { + "bedrock_identifier": "minecraft:anvil", + "block_hardness": 5.0, + "collision_index": 172, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "damage": "undamaged", + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:anvil[facing=east]": { + "bedrock_identifier": "minecraft:anvil", + "block_hardness": 5.0, + "collision_index": 172, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "damage": "undamaged", + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:chipped_anvil[facing=north]": { + "bedrock_identifier": "minecraft:anvil", + "block_hardness": 5.0, + "collision_index": 171, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "damage": "slightly_damaged", + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:chipped_anvil[facing=south]": { + "bedrock_identifier": "minecraft:anvil", + "block_hardness": 5.0, + "collision_index": 171, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "damage": "slightly_damaged", + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:chipped_anvil[facing=west]": { + "bedrock_identifier": "minecraft:anvil", + "block_hardness": 5.0, + "collision_index": 172, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "damage": "slightly_damaged", + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:chipped_anvil[facing=east]": { + "bedrock_identifier": "minecraft:anvil", + "block_hardness": 5.0, + "collision_index": 172, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "damage": "slightly_damaged", + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:damaged_anvil[facing=north]": { + "bedrock_identifier": "minecraft:anvil", + "block_hardness": 5.0, + "collision_index": 171, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "damage": "very_damaged", + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:damaged_anvil[facing=south]": { + "bedrock_identifier": "minecraft:anvil", + "block_hardness": 5.0, + "collision_index": 171, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "damage": "very_damaged", + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:damaged_anvil[facing=west]": { + "bedrock_identifier": "minecraft:anvil", + "block_hardness": 5.0, + "collision_index": 172, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "damage": "very_damaged", + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:damaged_anvil[facing=east]": { + "bedrock_identifier": "minecraft:anvil", + "block_hardness": 5.0, + "collision_index": 172, + "piston_behavior": "block", + "can_break_with_hand": false, + "bedrock_states": { + "damage": "very_damaged", + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:trapped_chest[facing=north,type=single,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "z": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:trapped_chest[facing=north,type=single,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "z": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:trapped_chest[facing=north,type=left,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 49, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "z": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:trapped_chest[facing=north,type=left,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 49, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "z": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:trapped_chest[facing=north,type=right,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 50, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "z": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:trapped_chest[facing=north,type=right,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 50, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "z": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:trapped_chest[facing=south,type=single,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "z": true, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:trapped_chest[facing=south,type=single,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "z": true, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:trapped_chest[facing=south,type=left,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 50, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "z": true, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:trapped_chest[facing=south,type=left,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 50, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "z": true, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:trapped_chest[facing=south,type=right,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 49, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "z": true, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:trapped_chest[facing=south,type=right,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 49, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "z": true, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:trapped_chest[facing=west,type=single,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "x": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:trapped_chest[facing=west,type=single,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "x": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:trapped_chest[facing=west,type=left,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 51, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "x": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:trapped_chest[facing=west,type=left,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 51, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "x": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:trapped_chest[facing=west,type=right,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 52, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "x": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:trapped_chest[facing=west,type=right,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 52, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "x": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:trapped_chest[facing=east,type=single,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "x": true, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:trapped_chest[facing=east,type=single,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 48, + "has_block_entity": true, + "can_break_with_hand": true, + "x": true, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:trapped_chest[facing=east,type=left,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 52, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "x": true, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:trapped_chest[facing=east,type=left,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 52, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "left", + "x": true, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:trapped_chest[facing=east,type=right,waterlogged=true]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 51, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "x": true, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:trapped_chest[facing=east,type=right,waterlogged=false]": { + "bedrock_identifier": "minecraft:trapped_chest", + "block_hardness": 2.5, + "collision_index": 51, + "has_block_entity": true, + "can_break_with_hand": true, + "double_chest_position": "right", + "x": true, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:light_weighted_pressure_plate[power=0]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:light_weighted_pressure_plate[power=1]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:light_weighted_pressure_plate[power=2]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:light_weighted_pressure_plate[power=3]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:light_weighted_pressure_plate[power=4]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:light_weighted_pressure_plate[power=5]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:light_weighted_pressure_plate[power=6]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:light_weighted_pressure_plate[power=7]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:light_weighted_pressure_plate[power=8]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:light_weighted_pressure_plate[power=9]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:light_weighted_pressure_plate[power=10]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:light_weighted_pressure_plate[power=11]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:light_weighted_pressure_plate[power=12]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:light_weighted_pressure_plate[power=13]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:light_weighted_pressure_plate[power=14]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:light_weighted_pressure_plate[power=15]": { + "bedrock_identifier": "minecraft:light_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=0]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=1]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=2]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=3]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=4]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=5]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=6]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=7]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=8]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=9]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=10]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=11]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=12]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=13]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=14]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:heavy_weighted_pressure_plate[power=15]": { + "bedrock_identifier": "minecraft:heavy_weighted_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:comparator[facing=north,mode=compare,powered=true]": { + "bedrock_identifier": "minecraft:powered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": false, + "output_lit_bit": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:comparator[facing=north,mode=compare,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": false, + "output_lit_bit": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:comparator[facing=north,mode=subtract,powered=true]": { + "bedrock_identifier": "minecraft:powered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": true, + "output_lit_bit": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:comparator[facing=north,mode=subtract,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": true, + "output_lit_bit": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:comparator[facing=south,mode=compare,powered=true]": { + "bedrock_identifier": "minecraft:powered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": false, + "output_lit_bit": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:comparator[facing=south,mode=compare,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": false, + "output_lit_bit": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:comparator[facing=south,mode=subtract,powered=true]": { + "bedrock_identifier": "minecraft:powered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": true, + "output_lit_bit": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:comparator[facing=south,mode=subtract,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": true, + "output_lit_bit": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:comparator[facing=west,mode=compare,powered=true]": { + "bedrock_identifier": "minecraft:powered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": false, + "output_lit_bit": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:comparator[facing=west,mode=compare,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": false, + "output_lit_bit": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:comparator[facing=west,mode=subtract,powered=true]": { + "bedrock_identifier": "minecraft:powered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": true, + "output_lit_bit": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:comparator[facing=west,mode=subtract,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": true, + "output_lit_bit": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:comparator[facing=east,mode=compare,powered=true]": { + "bedrock_identifier": "minecraft:powered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": false, + "output_lit_bit": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:comparator[facing=east,mode=compare,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": false, + "output_lit_bit": false, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:comparator[facing=east,mode=subtract,powered=true]": { + "bedrock_identifier": "minecraft:powered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": true, + "output_lit_bit": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:comparator[facing=east,mode=subtract,powered=false]": { + "bedrock_identifier": "minecraft:unpowered_comparator", + "block_hardness": 0.0, + "collision_index": 60, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "output_subtract_bit": true, + "output_lit_bit": false, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:daylight_detector[inverted=true,power=0]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:daylight_detector[inverted=true,power=1]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:daylight_detector[inverted=true,power=2]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:daylight_detector[inverted=true,power=3]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:daylight_detector[inverted=true,power=4]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:daylight_detector[inverted=true,power=5]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:daylight_detector[inverted=true,power=6]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:daylight_detector[inverted=true,power=7]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:daylight_detector[inverted=true,power=8]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:daylight_detector[inverted=true,power=9]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:daylight_detector[inverted=true,power=10]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:daylight_detector[inverted=true,power=11]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:daylight_detector[inverted=true,power=12]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:daylight_detector[inverted=true,power=13]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:daylight_detector[inverted=true,power=14]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:daylight_detector[inverted=true,power=15]": { + "bedrock_identifier": "minecraft:daylight_detector_inverted", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:daylight_detector[inverted=false,power=0]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:daylight_detector[inverted=false,power=1]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 1 + } + }, + "minecraft:daylight_detector[inverted=false,power=2]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 2 + } + }, + "minecraft:daylight_detector[inverted=false,power=3]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 3 + } + }, + "minecraft:daylight_detector[inverted=false,power=4]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 4 + } + }, + "minecraft:daylight_detector[inverted=false,power=5]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 5 + } + }, + "minecraft:daylight_detector[inverted=false,power=6]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 6 + } + }, + "minecraft:daylight_detector[inverted=false,power=7]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 7 + } + }, + "minecraft:daylight_detector[inverted=false,power=8]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 8 + } + }, + "minecraft:daylight_detector[inverted=false,power=9]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 9 + } + }, + "minecraft:daylight_detector[inverted=false,power=10]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 10 + } + }, + "minecraft:daylight_detector[inverted=false,power=11]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 11 + } + }, + "minecraft:daylight_detector[inverted=false,power=12]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 12 + } + }, + "minecraft:daylight_detector[inverted=false,power=13]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 13 + } + }, + "minecraft:daylight_detector[inverted=false,power=14]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 14 + } + }, + "minecraft:daylight_detector[inverted=false,power=15]": { + "bedrock_identifier": "minecraft:daylight_detector", + "block_hardness": 0.2, + "collision_index": 62, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:redstone_block": { + "bedrock_identifier": "minecraft:redstone_block", + "block_hardness": 5.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:nether_quartz_ore": { + "bedrock_identifier": "minecraft:quartz_ore", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:hopper[enabled=true,facing=down]": { + "bedrock_identifier": "minecraft:hopper", + "block_hardness": 3.0, + "collision_index": 173, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "toggle_bit": true + } + }, + "minecraft:hopper[enabled=true,facing=north]": { + "bedrock_identifier": "minecraft:hopper", + "block_hardness": 3.0, + "collision_index": 174, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2, + "toggle_bit": true + } + }, + "minecraft:hopper[enabled=true,facing=south]": { + "bedrock_identifier": "minecraft:hopper", + "block_hardness": 3.0, + "collision_index": 175, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3, + "toggle_bit": true + } + }, + "minecraft:hopper[enabled=true,facing=west]": { + "bedrock_identifier": "minecraft:hopper", + "block_hardness": 3.0, + "collision_index": 176, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4, + "toggle_bit": true + } + }, + "minecraft:hopper[enabled=true,facing=east]": { + "bedrock_identifier": "minecraft:hopper", + "block_hardness": 3.0, + "collision_index": 177, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5, + "toggle_bit": true + } + }, + "minecraft:hopper[enabled=false,facing=down]": { + "bedrock_identifier": "minecraft:hopper", + "block_hardness": 3.0, + "collision_index": 173, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "toggle_bit": false + } + }, + "minecraft:hopper[enabled=false,facing=north]": { + "bedrock_identifier": "minecraft:hopper", + "block_hardness": 3.0, + "collision_index": 174, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2, + "toggle_bit": false + } + }, + "minecraft:hopper[enabled=false,facing=south]": { + "bedrock_identifier": "minecraft:hopper", + "block_hardness": 3.0, + "collision_index": 175, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3, + "toggle_bit": false + } + }, + "minecraft:hopper[enabled=false,facing=west]": { + "bedrock_identifier": "minecraft:hopper", + "block_hardness": 3.0, + "collision_index": 176, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4, + "toggle_bit": false + } + }, + "minecraft:hopper[enabled=false,facing=east]": { + "bedrock_identifier": "minecraft:hopper", + "block_hardness": 3.0, + "collision_index": 177, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5, + "toggle_bit": false + } + }, + "minecraft:quartz_block": { + "bedrock_identifier": "minecraft:quartz_block", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "chisel_type": "default", + "pillar_axis": "y" + } + }, + "minecraft:chiseled_quartz_block": { + "bedrock_identifier": "minecraft:quartz_block", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "chisel_type": "chiseled", + "pillar_axis": "y" + } + }, + "minecraft:quartz_pillar[axis=x]": { + "bedrock_identifier": "minecraft:quartz_block", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "chisel_type": "lines", + "pillar_axis": "x" + } + }, + "minecraft:quartz_pillar[axis=y]": { + "bedrock_identifier": "minecraft:quartz_block", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "chisel_type": "lines", + "pillar_axis": "y" + } + }, + "minecraft:quartz_pillar[axis=z]": { + "bedrock_identifier": "minecraft:quartz_block", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "chisel_type": "lines", + "pillar_axis": "z" + } + }, + "minecraft:quartz_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:quartz_stairs", + "block_hardness": 0.8, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:activator_rail[powered=true,shape=north_south,waterlogged=true]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 0 + } + }, + "minecraft:activator_rail[powered=true,shape=north_south,waterlogged=false]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 0 + } + }, + "minecraft:activator_rail[powered=true,shape=east_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 1 + } + }, + "minecraft:activator_rail[powered=true,shape=east_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 1 + } + }, + "minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=true]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 2 + } + }, + "minecraft:activator_rail[powered=true,shape=ascending_east,waterlogged=false]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 2 + } + }, + "minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 3 + } + }, + "minecraft:activator_rail[powered=true,shape=ascending_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 3 + } + }, + "minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=true]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 4 + } + }, + "minecraft:activator_rail[powered=true,shape=ascending_north,waterlogged=false]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 4 + } + }, + "minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=true]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 5 + } + }, + "minecraft:activator_rail[powered=true,shape=ascending_south,waterlogged=false]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": true, + "rail_direction": 5 + } + }, + "minecraft:activator_rail[powered=false,shape=north_south,waterlogged=true]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 0 + } + }, + "minecraft:activator_rail[powered=false,shape=north_south,waterlogged=false]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 0 + } + }, + "minecraft:activator_rail[powered=false,shape=east_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 1 + } + }, + "minecraft:activator_rail[powered=false,shape=east_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 1 + } + }, + "minecraft:activator_rail[powered=false,shape=ascending_east,waterlogged=true]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 2 + } + }, + "minecraft:activator_rail[powered=false,shape=ascending_east,waterlogged=false]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 2 + } + }, + "minecraft:activator_rail[powered=false,shape=ascending_west,waterlogged=true]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 3 + } + }, + "minecraft:activator_rail[powered=false,shape=ascending_west,waterlogged=false]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 3 + } + }, + "minecraft:activator_rail[powered=false,shape=ascending_north,waterlogged=true]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 4 + } + }, + "minecraft:activator_rail[powered=false,shape=ascending_north,waterlogged=false]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 4 + } + }, + "minecraft:activator_rail[powered=false,shape=ascending_south,waterlogged=true]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 5 + } + }, + "minecraft:activator_rail[powered=false,shape=ascending_south,waterlogged=false]": { + "bedrock_identifier": "minecraft:activator_rail", + "block_hardness": 0.7, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "rail_data_bit": false, + "rail_direction": 5 + } + }, + "minecraft:dropper[facing=north,triggered=true]": { + "bedrock_identifier": "minecraft:dropper", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2, + "triggered_bit": true + } + }, + "minecraft:dropper[facing=north,triggered=false]": { + "bedrock_identifier": "minecraft:dropper", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2, + "triggered_bit": false + } + }, + "minecraft:dropper[facing=east,triggered=true]": { + "bedrock_identifier": "minecraft:dropper", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5, + "triggered_bit": true + } + }, + "minecraft:dropper[facing=east,triggered=false]": { + "bedrock_identifier": "minecraft:dropper", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5, + "triggered_bit": false + } + }, + "minecraft:dropper[facing=south,triggered=true]": { + "bedrock_identifier": "minecraft:dropper", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3, + "triggered_bit": true + } + }, + "minecraft:dropper[facing=south,triggered=false]": { + "bedrock_identifier": "minecraft:dropper", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3, + "triggered_bit": false + } + }, + "minecraft:dropper[facing=west,triggered=true]": { + "bedrock_identifier": "minecraft:dropper", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4, + "triggered_bit": true + } + }, + "minecraft:dropper[facing=west,triggered=false]": { + "bedrock_identifier": "minecraft:dropper", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4, + "triggered_bit": false + } + }, + "minecraft:dropper[facing=up,triggered=true]": { + "bedrock_identifier": "minecraft:dropper", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 1, + "triggered_bit": true + } + }, + "minecraft:dropper[facing=up,triggered=false]": { + "bedrock_identifier": "minecraft:dropper", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 1, + "triggered_bit": false + } + }, + "minecraft:dropper[facing=down,triggered=true]": { + "bedrock_identifier": "minecraft:dropper", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "triggered_bit": true + } + }, + "minecraft:dropper[facing=down,triggered=false]": { + "bedrock_identifier": "minecraft:dropper", + "block_hardness": 3.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "triggered_bit": false + } + }, + "minecraft:white_terracotta": { + "bedrock_identifier": "minecraft:white_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:orange_terracotta": { + "bedrock_identifier": "minecraft:orange_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:magenta_terracotta": { + "bedrock_identifier": "minecraft:magenta_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:light_blue_terracotta": { + "bedrock_identifier": "minecraft:light_blue_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:yellow_terracotta": { + "bedrock_identifier": "minecraft:yellow_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:lime_terracotta": { + "bedrock_identifier": "minecraft:lime_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:pink_terracotta": { + "bedrock_identifier": "minecraft:pink_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:gray_terracotta": { + "bedrock_identifier": "minecraft:gray_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:light_gray_terracotta": { + "bedrock_identifier": "minecraft:light_gray_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:cyan_terracotta": { + "bedrock_identifier": "minecraft:cyan_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:purple_terracotta": { + "bedrock_identifier": "minecraft:purple_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:blue_terracotta": { + "bedrock_identifier": "minecraft:blue_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:brown_terracotta": { + "bedrock_identifier": "minecraft:brown_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:green_terracotta": { + "bedrock_identifier": "minecraft:green_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:red_terracotta": { + "bedrock_identifier": "minecraft:red_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:black_terracotta": { + "bedrock_identifier": "minecraft:black_terracotta", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:white_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:white_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:orange_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:orange_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:magenta_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:magenta_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:light_blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:yellow_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:yellow_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:lime_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:lime_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:pink_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:pink_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:light_gray_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:light_gray_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:cyan_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cyan_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:purple_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:purple_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:blue_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:blue_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:brown_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:brown_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:green_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:green_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:red_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:red_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 92, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 93, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 94, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 95, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 96, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 97, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 98, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 99, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 100, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 101, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 102, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 103, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 104, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 105, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 106, + "can_break_with_hand": true + }, + "minecraft:black_stained_glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:black_stained_glass_pane", + "block_hardness": 0.3, + "collision_index": 107, + "can_break_with_hand": true + }, + "minecraft:acacia_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:acacia_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:cherry_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cherry_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cherry_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:dark_oak_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_oak_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "upside_down_bit": false, + "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:bamboo_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:bamboo_mosaic_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_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, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:barrier[waterlogged=true]": { + "bedrock_identifier": "minecraft:barrier", + "block_hardness": -1.0, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": true + }, + "minecraft:barrier[waterlogged=false]": { + "bedrock_identifier": "minecraft:barrier", + "block_hardness": -1.0, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": true + }, + "minecraft:light[level=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 0 + } + }, + "minecraft:light[level=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 0 + } + }, + "minecraft:light[level=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 1 + } + }, + "minecraft:light[level=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 1 + } + }, + "minecraft:light[level=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 2 + } + }, + "minecraft:light[level=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 2 + } + }, + "minecraft:light[level=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 3 + } + }, + "minecraft:light[level=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 3 + } + }, + "minecraft:light[level=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 4 + } + }, + "minecraft:light[level=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 4 + } + }, + "minecraft:light[level=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 5 + } + }, + "minecraft:light[level=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 5 + } + }, + "minecraft:light[level=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 6 + } + }, + "minecraft:light[level=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 6 + } + }, + "minecraft:light[level=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 7 + } + }, + "minecraft:light[level=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 7 + } + }, + "minecraft:light[level=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 8 + } + }, + "minecraft:light[level=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 8 + } + }, + "minecraft:light[level=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 9 + } + }, + "minecraft:light[level=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 9 + } + }, + "minecraft:light[level=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 10 + } + }, + "minecraft:light[level=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 10 + } + }, + "minecraft:light[level=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 11 + } + }, + "minecraft:light[level=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 11 + } + }, + "minecraft:light[level=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 12 + } + }, + "minecraft:light[level=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 12 + } + }, + "minecraft:light[level=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 13 + } + }, + "minecraft:light[level=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 13 + } + }, + "minecraft:light[level=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 14 + } + }, + "minecraft:light[level=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 14 + } + }, + "minecraft:light[level=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 15 + } + }, + "minecraft:light[level=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_block", + "block_hardness": -1.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "block_light_level": 15 + } + }, + "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:iron_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:iron_trapdoor", + "block_hardness": 5.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:prismarine": { + "bedrock_identifier": "minecraft:prismarine", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "prismarine_block_type": "default" + } + }, + "minecraft:prismarine_bricks": { + "bedrock_identifier": "minecraft:prismarine", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "prismarine_block_type": "bricks" + } + }, + "minecraft:dark_prismarine": { + "bedrock_identifier": "minecraft:prismarine", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "prismarine_block_type": "dark" + } + }, + "minecraft:prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:prismarine_bricks_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:dark_prismarine_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_prismarine_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:prismarine_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_rough", + "minecraft:vertical_half": "top" + } + }, + "minecraft:prismarine_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_rough", + "minecraft:vertical_half": "top" + } + }, + "minecraft:prismarine_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_rough", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:prismarine_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_rough", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:prismarine_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_rough", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:prismarine_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_rough", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:prismarine_brick_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_brick", + "minecraft:vertical_half": "top" + } + }, + "minecraft:prismarine_brick_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_brick", + "minecraft:vertical_half": "top" + } + }, + "minecraft:prismarine_brick_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:prismarine_brick_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:prismarine_brick_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:prismarine_brick_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:dark_prismarine_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_dark", + "minecraft:vertical_half": "top" + } + }, + "minecraft:dark_prismarine_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_dark", + "minecraft:vertical_half": "top" + } + }, + "minecraft:dark_prismarine_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_dark", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:dark_prismarine_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_dark", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:dark_prismarine_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_dark", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:dark_prismarine_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "prismarine_dark", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:sea_lantern": { + "bedrock_identifier": "minecraft:sea_lantern", + "block_hardness": 0.3, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:hay_block[axis=x]": { + "bedrock_identifier": "minecraft:hay_block", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x", + "deprecated": 0 + } + }, + "minecraft:hay_block[axis=y]": { + "bedrock_identifier": "minecraft:hay_block", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y", + "deprecated": 0 + } + }, + "minecraft:hay_block[axis=z]": { + "bedrock_identifier": "minecraft:hay_block", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z", + "deprecated": 0 + } + }, + "minecraft:white_carpet": { + "bedrock_identifier": "minecraft:white_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:orange_carpet": { + "bedrock_identifier": "minecraft:orange_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:magenta_carpet": { + "bedrock_identifier": "minecraft:magenta_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:light_blue_carpet": { + "bedrock_identifier": "minecraft:light_blue_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:yellow_carpet": { + "bedrock_identifier": "minecraft:yellow_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:lime_carpet": { + "bedrock_identifier": "minecraft:lime_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:pink_carpet": { + "bedrock_identifier": "minecraft:pink_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:gray_carpet": { + "bedrock_identifier": "minecraft:gray_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:light_gray_carpet": { + "bedrock_identifier": "minecraft:light_gray_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:cyan_carpet": { + "bedrock_identifier": "minecraft:cyan_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:purple_carpet": { + "bedrock_identifier": "minecraft:purple_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:blue_carpet": { + "bedrock_identifier": "minecraft:blue_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:brown_carpet": { + "bedrock_identifier": "minecraft:brown_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:green_carpet": { + "bedrock_identifier": "minecraft:green_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:red_carpet": { + "bedrock_identifier": "minecraft:red_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:black_carpet": { + "bedrock_identifier": "minecraft:black_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "can_break_with_hand": true + }, + "minecraft:terracotta": { + "bedrock_identifier": "minecraft:hardened_clay", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:coal_block": { + "bedrock_identifier": "minecraft:coal_block", + "block_hardness": 5.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:packed_ice": { + "bedrock_identifier": "minecraft:packed_ice", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:sunflower[half=upper]": { + "bedrock_identifier": "minecraft:double_plant", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true, + "double_plant_type": "sunflower" + } + }, + "minecraft:sunflower[half=lower]": { + "bedrock_identifier": "minecraft:double_plant", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false, + "double_plant_type": "sunflower" + } + }, + "minecraft:lilac[half=upper]": { + "bedrock_identifier": "minecraft:double_plant", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true, + "double_plant_type": "syringa" + } + }, + "minecraft:lilac[half=lower]": { + "bedrock_identifier": "minecraft:double_plant", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false, + "double_plant_type": "syringa" + } + }, + "minecraft:rose_bush[half=upper]": { + "bedrock_identifier": "minecraft:double_plant", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true, + "double_plant_type": "rose" + } + }, + "minecraft:rose_bush[half=lower]": { + "bedrock_identifier": "minecraft:double_plant", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false, + "double_plant_type": "rose" + } + }, + "minecraft:peony[half=upper]": { + "bedrock_identifier": "minecraft:double_plant", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true, + "double_plant_type": "paeonia" + } + }, + "minecraft:peony[half=lower]": { + "bedrock_identifier": "minecraft:double_plant", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false, + "double_plant_type": "paeonia" + } + }, + "minecraft:tall_grass[half=upper]": { + "bedrock_identifier": "minecraft:double_plant", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true, + "double_plant_type": "grass" + } + }, + "minecraft:tall_grass[half=lower]": { + "bedrock_identifier": "minecraft:double_plant", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false, + "double_plant_type": "grass" + } + }, + "minecraft:large_fern[half=upper]": { + "bedrock_identifier": "minecraft:double_plant", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true, + "double_plant_type": "fern" + } + }, + "minecraft:large_fern[half=lower]": { + "bedrock_identifier": "minecraft:double_plant", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false, + "double_plant_type": "fern" + } + }, + "minecraft:white_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:white_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:white_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:white_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:white_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:white_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:white_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:white_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:white_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:white_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:white_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:white_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:white_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:white_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:white_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:white_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:orange_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:orange_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:orange_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:orange_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:orange_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:orange_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:orange_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:orange_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:orange_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:orange_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:orange_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:orange_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:orange_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:orange_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:orange_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:orange_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:magenta_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:magenta_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:magenta_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:magenta_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:magenta_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:magenta_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:magenta_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:magenta_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:magenta_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:magenta_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:magenta_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:magenta_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:magenta_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:magenta_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:magenta_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:magenta_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:light_blue_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:light_blue_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:light_blue_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:light_blue_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:light_blue_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:light_blue_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:light_blue_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:light_blue_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:light_blue_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:light_blue_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:light_blue_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:light_blue_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:light_blue_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:light_blue_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:light_blue_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:light_blue_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:yellow_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:yellow_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:yellow_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:yellow_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:yellow_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:yellow_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:yellow_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:yellow_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:yellow_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:yellow_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:yellow_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:yellow_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:yellow_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:yellow_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:yellow_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:yellow_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:lime_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:lime_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:lime_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:lime_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:lime_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:lime_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:lime_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:lime_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:lime_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:lime_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:lime_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:lime_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:lime_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:lime_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:lime_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:lime_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:pink_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:pink_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:pink_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:pink_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:pink_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:pink_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:pink_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:pink_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:pink_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:pink_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:pink_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:pink_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:pink_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:pink_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:pink_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:pink_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:gray_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:gray_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:gray_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:gray_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:gray_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:gray_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:gray_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:gray_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:gray_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:gray_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:gray_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:gray_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:gray_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:gray_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:gray_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:gray_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:light_gray_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:light_gray_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:light_gray_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:light_gray_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:light_gray_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:light_gray_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:light_gray_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:light_gray_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:light_gray_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:light_gray_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:light_gray_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:light_gray_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:light_gray_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:light_gray_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:light_gray_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:light_gray_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:cyan_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:cyan_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:cyan_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:cyan_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:cyan_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:cyan_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:cyan_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:cyan_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:cyan_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:cyan_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:cyan_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:cyan_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:cyan_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:cyan_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:cyan_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:cyan_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:purple_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:purple_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:purple_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:purple_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:purple_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:purple_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:purple_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:purple_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:purple_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:purple_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:purple_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:purple_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:purple_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:purple_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:purple_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:purple_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:blue_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:blue_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:blue_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:blue_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:blue_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:blue_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:blue_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:blue_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:blue_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:blue_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:blue_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:blue_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:blue_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:blue_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:blue_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:blue_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:brown_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:brown_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:brown_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:brown_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:brown_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:brown_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:brown_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:brown_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:brown_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:brown_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:brown_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:brown_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:brown_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:brown_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:brown_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:brown_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:green_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:green_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:green_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:green_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:green_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:green_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:green_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:green_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:green_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:green_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:green_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:green_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:green_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:green_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:green_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:green_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:red_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:red_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:red_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:red_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:red_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:red_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:red_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:red_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:red_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:red_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:red_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:red_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:red_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:red_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:red_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:red_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:black_banner[rotation=0]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 0 + } + }, + "minecraft:black_banner[rotation=1]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 1 + } + }, + "minecraft:black_banner[rotation=2]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 2 + } + }, + "minecraft:black_banner[rotation=3]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 3 + } + }, + "minecraft:black_banner[rotation=4]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 4 + } + }, + "minecraft:black_banner[rotation=5]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 5 + } + }, + "minecraft:black_banner[rotation=6]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 6 + } + }, + "minecraft:black_banner[rotation=7]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 7 + } + }, + "minecraft:black_banner[rotation=8]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 8 + } + }, + "minecraft:black_banner[rotation=9]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 9 + } + }, + "minecraft:black_banner[rotation=10]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 10 + } + }, + "minecraft:black_banner[rotation=11]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 11 + } + }, + "minecraft:black_banner[rotation=12]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 12 + } + }, + "minecraft:black_banner[rotation=13]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 13 + } + }, + "minecraft:black_banner[rotation=14]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 14 + } + }, + "minecraft:black_banner[rotation=15]": { + "bedrock_identifier": "minecraft:standing_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "ground_sign_direction": 15 + } + }, + "minecraft:white_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:white_banner", + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:white_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:white_banner", + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:white_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:white_banner", + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:white_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:white_banner", + "can_break_with_hand": true, + "banner_color": 0, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:orange_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:orange_banner", + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:orange_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:orange_banner", + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:orange_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:orange_banner", + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:orange_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:orange_banner", + "can_break_with_hand": true, + "banner_color": 1, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:magenta_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:magenta_banner", + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:magenta_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:magenta_banner", + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:magenta_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:magenta_banner", + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:magenta_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:magenta_banner", + "can_break_with_hand": true, + "banner_color": 2, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:light_blue_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:light_blue_banner", + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:light_blue_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:light_blue_banner", + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:light_blue_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:light_blue_banner", + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:light_blue_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:light_blue_banner", + "can_break_with_hand": true, + "banner_color": 3, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:yellow_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:yellow_banner", + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:yellow_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:yellow_banner", + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:yellow_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:yellow_banner", + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:yellow_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:yellow_banner", + "can_break_with_hand": true, + "banner_color": 4, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:lime_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:lime_banner", + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:lime_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:lime_banner", + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:lime_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:lime_banner", + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:lime_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:lime_banner", + "can_break_with_hand": true, + "banner_color": 5, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:pink_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:pink_banner", + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:pink_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:pink_banner", + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:pink_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:pink_banner", + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:pink_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:pink_banner", + "can_break_with_hand": true, + "banner_color": 6, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:gray_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:gray_banner", + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:gray_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:gray_banner", + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:gray_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:gray_banner", + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:gray_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:gray_banner", + "can_break_with_hand": true, + "banner_color": 7, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:light_gray_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:light_gray_banner", + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:light_gray_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:light_gray_banner", + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:light_gray_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:light_gray_banner", + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:light_gray_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:light_gray_banner", + "can_break_with_hand": true, + "banner_color": 8, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:cyan_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:cyan_banner", + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:cyan_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:cyan_banner", + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:cyan_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:cyan_banner", + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:cyan_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:cyan_banner", + "can_break_with_hand": true, + "banner_color": 9, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:purple_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:purple_banner", + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:purple_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:purple_banner", + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:purple_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:purple_banner", + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:purple_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:purple_banner", + "can_break_with_hand": true, + "banner_color": 10, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:blue_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:blue_banner", + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:blue_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:blue_banner", + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:blue_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:blue_banner", + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:blue_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:blue_banner", + "can_break_with_hand": true, + "banner_color": 11, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:brown_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:brown_banner", + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:brown_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:brown_banner", + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:brown_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:brown_banner", + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:brown_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:brown_banner", + "can_break_with_hand": true, + "banner_color": 12, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:green_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:green_banner", + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:green_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:green_banner", + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:green_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:green_banner", + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:green_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:green_banner", + "can_break_with_hand": true, + "banner_color": 13, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:red_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:red_banner", + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:red_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:red_banner", + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:red_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:red_banner", + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:red_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:red_banner", + "can_break_with_hand": true, + "banner_color": 14, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:black_wall_banner[facing=north]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:black_banner", + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:black_wall_banner[facing=south]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:black_banner", + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:black_wall_banner[facing=west]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:black_banner", + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:black_wall_banner[facing=east]": { + "bedrock_identifier": "minecraft:wall_banner", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:black_banner", + "can_break_with_hand": true, + "banner_color": 15, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:red_sandstone": { + "bedrock_identifier": "minecraft:red_sandstone", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "sand_stone_type": "default" + } + }, + "minecraft:chiseled_red_sandstone": { + "bedrock_identifier": "minecraft:red_sandstone", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "sand_stone_type": "heiroglyphs" + } + }, + "minecraft:cut_red_sandstone": { + "bedrock_identifier": "minecraft:red_sandstone", + "block_hardness": 0.8, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "sand_stone_type": "cut" + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_sandstone_stairs", + "block_hardness": 0.8, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:oak_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:oak_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:oak_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:oak_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:oak_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:oak_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:oak_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:oak_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:spruce_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:spruce_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:spruce_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:spruce_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:spruce_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:spruce_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:spruce_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:spruce_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:birch_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:birch_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:birch_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:birch_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:birch_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:birch_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:birch_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:birch_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:jungle_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:jungle_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:jungle_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:jungle_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:jungle_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:jungle_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:jungle_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:jungle_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:acacia_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:acacia_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:acacia_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:acacia_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:acacia_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:acacia_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:acacia_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:acacia_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cherry_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:cherry_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:cherry_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cherry_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cherry_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:cherry_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cherry_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:cherry_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:dark_oak_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:dark_oak_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:dark_oak_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:dark_oak_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:dark_oak_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:dark_oak_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:dark_oak_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:dark_oak_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:mangrove_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:mangrove_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:mangrove_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:mangrove_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:mangrove_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:mangrove_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "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": { + "minecraft:vertical_half": "bottom" + } + }, + "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": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:bamboo_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:bamboo_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:bamboo_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:bamboo_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:bamboo_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:bamboo_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:bamboo_mosaic_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:bamboo_mosaic_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:bamboo_mosaic_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:bamboo_mosaic_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:bamboo_mosaic_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:bamboo_mosaic_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:bamboo_mosaic_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:stone_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "stone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:stone_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "stone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:stone_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "stone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:stone_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "stone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:stone_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "stone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:stone_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "stone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_stone_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "smooth_stone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:smooth_stone_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "smooth_stone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:smooth_stone_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "smooth_stone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_stone_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "smooth_stone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_stone_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "smooth_stone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_stone_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "smooth_stone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:sandstone_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "sandstone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:sandstone_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "sandstone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:sandstone_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:sandstone_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:sandstone_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:sandstone_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cut_sandstone_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "cut_sandstone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:cut_sandstone_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "cut_sandstone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:cut_sandstone_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "cut_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cut_sandstone_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "cut_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cut_sandstone_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "cut_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cut_sandstone_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "cut_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:petrified_oak_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "wood", + "minecraft:vertical_half": "top" + } + }, + "minecraft:petrified_oak_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "wood", + "minecraft:vertical_half": "top" + } + }, + "minecraft:petrified_oak_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "wood", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:petrified_oak_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "wood", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:petrified_oak_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "wood", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:petrified_oak_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "wood", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cobblestone_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "cobblestone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:cobblestone_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "cobblestone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:cobblestone_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "cobblestone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cobblestone_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "cobblestone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cobblestone_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "cobblestone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cobblestone_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "cobblestone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:brick_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "brick", + "minecraft:vertical_half": "top" + } + }, + "minecraft:brick_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "brick", + "minecraft:vertical_half": "top" + } + }, + "minecraft:brick_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:brick_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:brick_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:brick_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:stone_brick_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "stone_brick", + "minecraft:vertical_half": "top" + } + }, + "minecraft:stone_brick_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "stone_brick", + "minecraft:vertical_half": "top" + } + }, + "minecraft:stone_brick_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "stone_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:stone_brick_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "stone_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:stone_brick_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "stone_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:stone_brick_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "stone_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:mud_brick_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_slab", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:mud_brick_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_slab", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:mud_brick_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:mud_brick_slab", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:mud_brick_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:mud_brick_slab", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "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": { + "minecraft:vertical_half": "bottom" + } + }, + "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": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:nether_brick_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "nether_brick", + "minecraft:vertical_half": "top" + } + }, + "minecraft:nether_brick_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "nether_brick", + "minecraft:vertical_half": "top" + } + }, + "minecraft:nether_brick_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "nether_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:nether_brick_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "nether_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:nether_brick_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "nether_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:nether_brick_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "nether_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:quartz_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "quartz", + "minecraft:vertical_half": "top" + } + }, + "minecraft:quartz_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "quartz", + "minecraft:vertical_half": "top" + } + }, + "minecraft:quartz_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "quartz", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:quartz_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "quartz", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:quartz_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "quartz", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:quartz_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type": "quartz", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:red_sandstone_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "red_sandstone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:red_sandstone_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "red_sandstone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:red_sandstone_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "red_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:red_sandstone_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "red_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:red_sandstone_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "red_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:red_sandstone_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "red_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cut_red_sandstone_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "cut_red_sandstone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:cut_red_sandstone_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "cut_red_sandstone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "cut_red_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cut_red_sandstone_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "cut_red_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cut_red_sandstone_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "cut_red_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cut_red_sandstone_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "cut_red_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:purpur_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "purpur", + "minecraft:vertical_half": "top" + } + }, + "minecraft:purpur_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "purpur", + "minecraft:vertical_half": "top" + } + }, + "minecraft:purpur_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "purpur", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:purpur_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "purpur", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:purpur_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "purpur", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:purpur_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "purpur", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_stone": { + "bedrock_identifier": "minecraft:smooth_stone", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:smooth_sandstone": { + "bedrock_identifier": "minecraft:sandstone", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "sand_stone_type": "smooth" + } + }, + "minecraft:smooth_quartz": { + "bedrock_identifier": "minecraft:quartz_block", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "chisel_type": "smooth", + "pillar_axis": "y" + } + }, + "minecraft:smooth_red_sandstone": { + "bedrock_identifier": "minecraft:red_sandstone", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "sand_stone_type": "smooth" + } + }, + "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_fence_gate[facing=north,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_fence_gate[facing=north,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_fence_gate[facing=south,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_fence_gate[facing=south,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_fence_gate[facing=west,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_fence_gate[facing=west,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_fence_gate[facing=east,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_fence_gate[facing=east,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:birch_fence_gate[facing=north,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:birch_fence_gate[facing=north,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:birch_fence_gate[facing=north,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:birch_fence_gate[facing=north,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:birch_fence_gate[facing=north,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:birch_fence_gate[facing=south,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:birch_fence_gate[facing=south,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:birch_fence_gate[facing=south,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:birch_fence_gate[facing=south,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:birch_fence_gate[facing=west,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:birch_fence_gate[facing=west,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:birch_fence_gate[facing=west,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:birch_fence_gate[facing=west,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:birch_fence_gate[facing=east,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:birch_fence_gate[facing=east,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:birch_fence_gate[facing=east,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:birch_fence_gate[facing=east,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_fence_gate[facing=north,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_fence_gate[facing=north,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_fence_gate[facing=south,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_fence_gate[facing=south,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_fence_gate[facing=west,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_fence_gate[facing=west,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_fence_gate[facing=east,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_fence_gate[facing=east,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_fence_gate[facing=north,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_fence_gate[facing=north,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_fence_gate[facing=south,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_fence_gate[facing=south,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_fence_gate[facing=west,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_fence_gate[facing=west,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_fence_gate[facing=east,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_fence_gate[facing=east,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:cherry_fence_gate[facing=north,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=north,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=north,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=north,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=north,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=north,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=north,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=north,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=south,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=south,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=south,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=south,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=south,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=south,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=south,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=south,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=west,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=west,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=west,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=west,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=west,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=west,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=west,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=west,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=east,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=east,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=east,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=east,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=east,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=east,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_fence_gate[facing=east,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:cherry_fence_gate[facing=east,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_fence_gate[facing=north,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_fence_gate[facing=north,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_fence_gate[facing=south,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_fence_gate[facing=south,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_fence_gate[facing=west,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_fence_gate[facing=west,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_fence_gate[facing=east,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_fence_gate[facing=east,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "in_wall_bit": false, + "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": 73, + "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": 73, + "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": 73, + "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": 73, + "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": 73, + "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": 73, + "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": 73, + "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": 73, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "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": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=north,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=north,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=north,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=north,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=north,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=north,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=north,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=north,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=south,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=south,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=south,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=south,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=south,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=south,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=south,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=south,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=west,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=west,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=west,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=west,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=west,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=west,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=west,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=west,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=east,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=east,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=east,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=east,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": true, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=east,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=east,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_fence_gate[facing=east,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3, + "in_wall_bit": false, + "open_bit": false + } + }, + "minecraft:bamboo_fence_gate[facing=east,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "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:spruce_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:spruce_fence[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:spruce_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:birch_fence[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:birch_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:jungle_fence[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:jungle_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:acacia_fence[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:acacia_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:cherry_fence[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:cherry_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:dark_oak_fence[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:dark_oak_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:mangrove_fence[east=true,north=true,south=true,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=true,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=true,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=true,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=true,south=false,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=true,south=false,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=true,south=false,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=true,south=false,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=true,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=true,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=true,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=true,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=true,north=false,south=false,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=true,north=false,south=false,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=true,north=false,south=false,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=true,north=false,south=false,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=true,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=true,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=true,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=true,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=true,south=false,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=true,south=false,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=true,south=false,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=true,south=false,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=true,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=true,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=true,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=true,waterlogged=false,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=true,west=true]": { + "bedrock_identifier": "minecraft:mangrove_fence", + "block_hardness": 2.0, + "collision_index": 81, + "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": 82, + "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": 81, + "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": 82, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:bamboo_fence[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:bamboo_fence", + "block_hardness": 2.0, + "collision_index": 82, + "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, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:spruce_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:spruce_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:birch_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:birch_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:birch_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:birch_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:birch_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:birch_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:jungle_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:jungle_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:acacia_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:acacia_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:cherry_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:cherry_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:cherry_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:cherry_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:dark_oak_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 3 + } + }, + "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 1 + } + }, + "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 2 + } + }, + "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": true, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": false, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "direction": 0 + } + }, + "minecraft:dark_oak_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:dark_oak_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upper_block_bit": false, + "door_hinge_bit": true, + "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:bamboo_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:bamboo_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:bamboo_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:bamboo_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, + "collision_index": 180, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:end_rod[facing=east]": { + "bedrock_identifier": "minecraft:end_rod", + "block_hardness": 0.0, + "collision_index": 181, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:end_rod[facing=south]": { + "bedrock_identifier": "minecraft:end_rod", + "block_hardness": 0.0, + "collision_index": 180, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:end_rod[facing=west]": { + "bedrock_identifier": "minecraft:end_rod", + "block_hardness": 0.0, + "collision_index": 181, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:end_rod[facing=up]": { + "bedrock_identifier": "minecraft:end_rod", + "block_hardness": 0.0, + "collision_index": 182, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:end_rod[facing=down]": { + "bedrock_identifier": "minecraft:end_rod", + "block_hardness": 0.0, + "collision_index": 182, + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 0 + } + }, + "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 183, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 184, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 185, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 186, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 187, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 188, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 189, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 190, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 191, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 192, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 193, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 194, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 195, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 196, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 197, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 198, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 199, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 200, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 201, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 202, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 203, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 204, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 205, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 206, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 207, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 208, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 209, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 210, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 211, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 212, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 213, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=true,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 214, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 215, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 216, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 217, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 218, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 219, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 220, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 221, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 222, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 223, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 224, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 225, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 226, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 227, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 228, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 229, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=true,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 230, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 231, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 232, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 233, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=true,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 234, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 235, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 236, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 237, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=true,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 238, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 239, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 240, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 241, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=false,south=true,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 242, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=true,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 243, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=true,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 244, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=true]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 245, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_plant[down=false,east=false,north=false,south=false,up=false,west=false]": { + "bedrock_identifier": "minecraft:chorus_plant", + "block_hardness": 0.4, + "collision_index": 246, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:chorus_flower[age=0]": { + "bedrock_identifier": "minecraft:chorus_flower", + "block_hardness": 0.4, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:chorus_flower[age=1]": { + "bedrock_identifier": "minecraft:chorus_flower", + "block_hardness": 0.4, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:chorus_flower[age=2]": { + "bedrock_identifier": "minecraft:chorus_flower", + "block_hardness": 0.4, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:chorus_flower[age=3]": { + "bedrock_identifier": "minecraft:chorus_flower", + "block_hardness": 0.4, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:chorus_flower[age=4]": { + "bedrock_identifier": "minecraft:chorus_flower", + "block_hardness": 0.4, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 4 + } + }, + "minecraft:chorus_flower[age=5]": { + "bedrock_identifier": "minecraft:chorus_flower", + "block_hardness": 0.4, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "age": 5 + } + }, + "minecraft:purpur_block": { + "bedrock_identifier": "minecraft:purpur_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "chisel_type": "default", + "pillar_axis": "y" + } + }, + "minecraft:purpur_pillar[axis=x]": { + "bedrock_identifier": "minecraft:purpur_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "chisel_type": "lines", + "pillar_axis": "x" + } + }, + "minecraft:purpur_pillar[axis=y]": { + "bedrock_identifier": "minecraft:purpur_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "chisel_type": "lines", + "pillar_axis": "y" + } + }, + "minecraft:purpur_pillar[axis=z]": { + "bedrock_identifier": "minecraft:purpur_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "chisel_type": "lines", + "pillar_axis": "z" + } + }, + "minecraft:purpur_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:purpur_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:purpur_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_bricks": { + "bedrock_identifier": "minecraft:end_bricks", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:torchflower_crop[age=0]": { + "bedrock_identifier": "minecraft:torchflower_crop", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:torchflower_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 0 + } + }, + "minecraft:torchflower_crop[age=1]": { + "bedrock_identifier": "minecraft:torchflower_crop", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:torchflower_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 4 + } + }, + "minecraft:pitcher_crop[age=0,half=upper]": { + "bedrock_identifier": "minecraft:pitcher_crop", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "pick_item": "minecraft:pitcher_pod", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 0, + "upper_block_bit": true + } + }, + "minecraft:pitcher_crop[age=0,half=lower]": { + "bedrock_identifier": "minecraft:pitcher_crop", + "block_hardness": 0.0, + "collision_index": 247, + "piston_behavior": "destroy", + "pick_item": "minecraft:pitcher_pod", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 0, + "upper_block_bit": false + } + }, + "minecraft:pitcher_crop[age=1,half=upper]": { + "bedrock_identifier": "minecraft:pitcher_crop", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pitcher_pod", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 1, + "upper_block_bit": true + } + }, + "minecraft:pitcher_crop[age=1,half=lower]": { + "bedrock_identifier": "minecraft:pitcher_crop", + "block_hardness": 0.0, + "collision_index": 248, + "piston_behavior": "destroy", + "pick_item": "minecraft:pitcher_pod", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 1, + "upper_block_bit": false + } + }, + "minecraft:pitcher_crop[age=2,half=upper]": { + "bedrock_identifier": "minecraft:pitcher_crop", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pitcher_pod", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 3, + "upper_block_bit": true + } + }, + "minecraft:pitcher_crop[age=2,half=lower]": { + "bedrock_identifier": "minecraft:pitcher_crop", + "block_hardness": 0.0, + "collision_index": 248, + "piston_behavior": "destroy", + "pick_item": "minecraft:pitcher_pod", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 3, + "upper_block_bit": false + } + }, + "minecraft:pitcher_crop[age=3,half=upper]": { + "bedrock_identifier": "minecraft:pitcher_crop", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pitcher_pod", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 5, + "upper_block_bit": true + } + }, + "minecraft:pitcher_crop[age=3,half=lower]": { + "bedrock_identifier": "minecraft:pitcher_crop", + "block_hardness": 0.0, + "collision_index": 248, + "piston_behavior": "destroy", + "pick_item": "minecraft:pitcher_pod", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 5, + "upper_block_bit": false + } + }, + "minecraft:pitcher_crop[age=4,half=upper]": { + "bedrock_identifier": "minecraft:pitcher_crop", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:pitcher_pod", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7, + "upper_block_bit": true + } + }, + "minecraft:pitcher_crop[age=4,half=lower]": { + "bedrock_identifier": "minecraft:pitcher_crop", + "block_hardness": 0.0, + "collision_index": 248, + "piston_behavior": "destroy", + "pick_item": "minecraft:pitcher_pod", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7, + "upper_block_bit": false + } + }, + "minecraft:pitcher_plant[half=upper]": { + "bedrock_identifier": "minecraft:pitcher_plant", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true + } + }, + "minecraft:pitcher_plant[half=lower]": { + "bedrock_identifier": "minecraft:pitcher_plant", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false + } + }, + "minecraft:beetroots[age=0]": { + "bedrock_identifier": "minecraft:beetroot", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:beetroot_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 0 + } + }, + "minecraft:beetroots[age=1]": { + "bedrock_identifier": "minecraft:beetroot", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:beetroot_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 3 + } + }, + "minecraft:beetroots[age=2]": { + "bedrock_identifier": "minecraft:beetroot", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:beetroot_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 4 + } + }, + "minecraft:beetroots[age=3]": { + "bedrock_identifier": "minecraft:beetroot", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:beetroot_seeds", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 7 + } + }, + "minecraft:dirt_path": { + "bedrock_identifier": "minecraft:grass_path", + "block_hardness": 0.65, + "collision_index": 53, + "can_break_with_hand": true + }, + "minecraft:end_gateway": { + "bedrock_identifier": "minecraft:end_gateway", + "block_hardness": -1.0, + "collision_index": 0, + "piston_behavior": "block", + "has_block_entity": true, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:repeating_command_block[conditional=true,facing=north]": { + "bedrock_identifier": "minecraft:repeating_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 2 + } + }, + "minecraft:repeating_command_block[conditional=true,facing=east]": { + "bedrock_identifier": "minecraft:repeating_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 5 + } + }, + "minecraft:repeating_command_block[conditional=true,facing=south]": { + "bedrock_identifier": "minecraft:repeating_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 3 + } + }, + "minecraft:repeating_command_block[conditional=true,facing=west]": { + "bedrock_identifier": "minecraft:repeating_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 4 + } + }, + "minecraft:repeating_command_block[conditional=true,facing=up]": { + "bedrock_identifier": "minecraft:repeating_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 1 + } + }, + "minecraft:repeating_command_block[conditional=true,facing=down]": { + "bedrock_identifier": "minecraft:repeating_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 0 + } + }, + "minecraft:repeating_command_block[conditional=false,facing=north]": { + "bedrock_identifier": "minecraft:repeating_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 2 + } + }, + "minecraft:repeating_command_block[conditional=false,facing=east]": { + "bedrock_identifier": "minecraft:repeating_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 5 + } + }, + "minecraft:repeating_command_block[conditional=false,facing=south]": { + "bedrock_identifier": "minecraft:repeating_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 3 + } + }, + "minecraft:repeating_command_block[conditional=false,facing=west]": { + "bedrock_identifier": "minecraft:repeating_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 4 + } + }, + "minecraft:repeating_command_block[conditional=false,facing=up]": { + "bedrock_identifier": "minecraft:repeating_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 1 + } + }, + "minecraft:repeating_command_block[conditional=false,facing=down]": { + "bedrock_identifier": "minecraft:repeating_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 0 + } + }, + "minecraft:chain_command_block[conditional=true,facing=north]": { + "bedrock_identifier": "minecraft:chain_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 2 + } + }, + "minecraft:chain_command_block[conditional=true,facing=east]": { + "bedrock_identifier": "minecraft:chain_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 5 + } + }, + "minecraft:chain_command_block[conditional=true,facing=south]": { + "bedrock_identifier": "minecraft:chain_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 3 + } + }, + "minecraft:chain_command_block[conditional=true,facing=west]": { + "bedrock_identifier": "minecraft:chain_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 4 + } + }, + "minecraft:chain_command_block[conditional=true,facing=up]": { + "bedrock_identifier": "minecraft:chain_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 1 + } + }, + "minecraft:chain_command_block[conditional=true,facing=down]": { + "bedrock_identifier": "minecraft:chain_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": true, + "facing_direction": 0 + } + }, + "minecraft:chain_command_block[conditional=false,facing=north]": { + "bedrock_identifier": "minecraft:chain_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 2 + } + }, + "minecraft:chain_command_block[conditional=false,facing=east]": { + "bedrock_identifier": "minecraft:chain_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 5 + } + }, + "minecraft:chain_command_block[conditional=false,facing=south]": { + "bedrock_identifier": "minecraft:chain_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 3 + } + }, + "minecraft:chain_command_block[conditional=false,facing=west]": { + "bedrock_identifier": "minecraft:chain_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 4 + } + }, + "minecraft:chain_command_block[conditional=false,facing=up]": { + "bedrock_identifier": "minecraft:chain_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 1 + } + }, + "minecraft:chain_command_block[conditional=false,facing=down]": { + "bedrock_identifier": "minecraft:chain_command_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "conditional_bit": false, + "facing_direction": 0 + } + }, + "minecraft:frosted_ice[age=0]": { + "bedrock_identifier": "minecraft:frosted_ice", + "block_hardness": 0.5, + "collision_index": 1, + "pick_item": "minecraft:air", + "can_break_with_hand": true, + "bedrock_states": { + "age": 0 + } + }, + "minecraft:frosted_ice[age=1]": { + "bedrock_identifier": "minecraft:frosted_ice", + "block_hardness": 0.5, + "collision_index": 1, + "pick_item": "minecraft:air", + "can_break_with_hand": true, + "bedrock_states": { + "age": 1 + } + }, + "minecraft:frosted_ice[age=2]": { + "bedrock_identifier": "minecraft:frosted_ice", + "block_hardness": 0.5, + "collision_index": 1, + "pick_item": "minecraft:air", + "can_break_with_hand": true, + "bedrock_states": { + "age": 2 + } + }, + "minecraft:frosted_ice[age=3]": { + "bedrock_identifier": "minecraft:frosted_ice", + "block_hardness": 0.5, + "collision_index": 1, + "pick_item": "minecraft:air", + "can_break_with_hand": true, + "bedrock_states": { + "age": 3 + } + }, + "minecraft:magma_block": { + "bedrock_identifier": "minecraft:magma", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:nether_wart_block": { + "bedrock_identifier": "minecraft:nether_wart_block", + "block_hardness": 1.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:red_nether_bricks": { + "bedrock_identifier": "minecraft:red_nether_brick", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:bone_block[axis=x]": { + "bedrock_identifier": "minecraft:bone_block", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "x", + "deprecated": 0 + } + }, + "minecraft:bone_block[axis=y]": { + "bedrock_identifier": "minecraft:bone_block", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "y", + "deprecated": 0 + } + }, + "minecraft:bone_block[axis=z]": { + "bedrock_identifier": "minecraft:bone_block", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "z", + "deprecated": 0 + } + }, + "minecraft:structure_void": { + "bedrock_identifier": "minecraft:structure_void", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "structure_void_type": "air" + } + }, + "minecraft:observer[facing=north,powered=true]": { + "bedrock_identifier": "minecraft:observer", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "powered_bit": true, + "minecraft:facing_direction": "north" + } + }, + "minecraft:observer[facing=north,powered=false]": { + "bedrock_identifier": "minecraft:observer", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "powered_bit": false, + "minecraft:facing_direction": "north" + } + }, + "minecraft:observer[facing=east,powered=true]": { + "bedrock_identifier": "minecraft:observer", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "powered_bit": true, + "minecraft:facing_direction": "east" + } + }, + "minecraft:observer[facing=east,powered=false]": { + "bedrock_identifier": "minecraft:observer", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "powered_bit": false, + "minecraft:facing_direction": "east" + } + }, + "minecraft:observer[facing=south,powered=true]": { + "bedrock_identifier": "minecraft:observer", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "powered_bit": true, + "minecraft:facing_direction": "south" + } + }, + "minecraft:observer[facing=south,powered=false]": { + "bedrock_identifier": "minecraft:observer", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "powered_bit": false, + "minecraft:facing_direction": "south" + } + }, + "minecraft:observer[facing=west,powered=true]": { + "bedrock_identifier": "minecraft:observer", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "powered_bit": true, + "minecraft:facing_direction": "west" + } + }, + "minecraft:observer[facing=west,powered=false]": { + "bedrock_identifier": "minecraft:observer", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "powered_bit": false, + "minecraft:facing_direction": "west" + } + }, + "minecraft:observer[facing=up,powered=true]": { + "bedrock_identifier": "minecraft:observer", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "powered_bit": true, + "minecraft:facing_direction": "up" + } + }, + "minecraft:observer[facing=up,powered=false]": { + "bedrock_identifier": "minecraft:observer", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "powered_bit": false, + "minecraft:facing_direction": "up" + } + }, + "minecraft:observer[facing=down,powered=true]": { + "bedrock_identifier": "minecraft:observer", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "powered_bit": true, + "minecraft:facing_direction": "down" + } + }, + "minecraft:observer[facing=down,powered=false]": { + "bedrock_identifier": "minecraft:observer", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "powered_bit": false, + "minecraft:facing_direction": "down" + } + }, + "minecraft:shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:undyed_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:undyed_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:undyed_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:undyed_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:undyed_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:undyed_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:white_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:white_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:white_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:white_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:white_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:white_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:white_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:white_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:white_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:white_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:white_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:white_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:orange_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:orange_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:orange_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:orange_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:orange_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:orange_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:orange_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:orange_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:orange_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:orange_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:orange_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:orange_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:magenta_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:magenta_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:magenta_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:magenta_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:magenta_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:magenta_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:magenta_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:magenta_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:magenta_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:magenta_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:magenta_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:magenta_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:light_blue_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:light_blue_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:light_blue_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:light_blue_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:light_blue_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:light_blue_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:light_blue_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:light_blue_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:light_blue_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:light_blue_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:light_blue_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:light_blue_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:yellow_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:yellow_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:yellow_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:yellow_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:yellow_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:yellow_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:yellow_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:yellow_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:yellow_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:yellow_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:yellow_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:yellow_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:lime_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:lime_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:lime_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:lime_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:lime_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:lime_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:lime_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:lime_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:lime_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:lime_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:lime_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:lime_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:pink_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:pink_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:pink_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:pink_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:pink_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:pink_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:pink_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:pink_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:pink_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:pink_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:pink_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:pink_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:gray_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:gray_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:gray_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:gray_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:gray_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:gray_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:gray_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:gray_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:gray_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:gray_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:gray_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:gray_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:light_gray_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:light_gray_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:light_gray_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:light_gray_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:light_gray_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:light_gray_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:light_gray_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:light_gray_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:light_gray_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:light_gray_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:light_gray_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:light_gray_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:cyan_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:cyan_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:cyan_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:cyan_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:cyan_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:cyan_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:cyan_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:cyan_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:cyan_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:cyan_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:cyan_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:cyan_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:purple_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:purple_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:purple_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:purple_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:purple_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:purple_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:purple_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:purple_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:purple_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:purple_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:purple_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:purple_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:blue_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:blue_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:blue_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:blue_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:blue_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:blue_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:blue_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:blue_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:blue_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:blue_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:blue_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:blue_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:brown_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:brown_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:brown_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:brown_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:brown_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:brown_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:brown_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:brown_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:brown_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:brown_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:brown_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:brown_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:green_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:green_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:green_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:green_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:green_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:green_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:green_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:green_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:green_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:green_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:green_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:green_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:red_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:red_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:red_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:red_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:red_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:red_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:red_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:red_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:red_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:red_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:red_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:red_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:black_shulker_box[facing=north]": { + "bedrock_identifier": "minecraft:black_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 2 + }, + "minecraft:black_shulker_box[facing=east]": { + "bedrock_identifier": "minecraft:black_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 5 + }, + "minecraft:black_shulker_box[facing=south]": { + "bedrock_identifier": "minecraft:black_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 3 + }, + "minecraft:black_shulker_box[facing=west]": { + "bedrock_identifier": "minecraft:black_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 4 + }, + "minecraft:black_shulker_box[facing=up]": { + "bedrock_identifier": "minecraft:black_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 1 + }, + "minecraft:black_shulker_box[facing=down]": { + "bedrock_identifier": "minecraft:black_shulker_box", + "block_hardness": 2.0, + "collision_index": 1, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "shulker_direction": 0 + }, + "minecraft:white_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:white_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:white_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:white_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:white_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:white_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:white_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:white_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:orange_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:orange_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:orange_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:orange_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:orange_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:orange_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:orange_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:orange_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:magenta_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:magenta_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:magenta_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:magenta_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:magenta_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:magenta_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:magenta_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:magenta_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:light_blue_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:light_blue_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:light_blue_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:light_blue_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:light_blue_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:light_blue_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:light_blue_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:light_blue_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:yellow_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:yellow_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:yellow_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:yellow_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:yellow_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:yellow_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:yellow_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:yellow_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:lime_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:lime_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:lime_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:lime_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:lime_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:lime_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:lime_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:lime_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:pink_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:pink_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:pink_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:pink_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:pink_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:pink_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:pink_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:pink_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:gray_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:gray_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:gray_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:gray_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:gray_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:gray_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:gray_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:gray_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:light_gray_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:silver_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:light_gray_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:silver_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:light_gray_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:silver_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:light_gray_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:silver_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:cyan_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:cyan_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:cyan_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:cyan_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:cyan_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:cyan_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:cyan_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:cyan_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:purple_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:purple_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:purple_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:purple_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:purple_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:purple_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:purple_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:purple_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:blue_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:blue_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:blue_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:blue_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:blue_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:blue_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:blue_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:blue_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:brown_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:brown_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:brown_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:brown_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:brown_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:brown_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:brown_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:brown_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:green_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:green_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:green_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:green_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:green_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:green_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:green_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:green_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:red_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:red_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:red_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:red_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:red_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:red_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:red_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:red_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:black_glazed_terracotta[facing=north]": { + "bedrock_identifier": "minecraft:black_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:black_glazed_terracotta[facing=south]": { + "bedrock_identifier": "minecraft:black_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:black_glazed_terracotta[facing=west]": { + "bedrock_identifier": "minecraft:black_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:black_glazed_terracotta[facing=east]": { + "bedrock_identifier": "minecraft:black_glazed_terracotta", + "block_hardness": 1.4, + "collision_index": 1, + "piston_behavior": "push_only", + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:white_concrete": { + "bedrock_identifier": "minecraft:white_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:orange_concrete": { + "bedrock_identifier": "minecraft:orange_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:magenta_concrete": { + "bedrock_identifier": "minecraft:magenta_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:light_blue_concrete": { + "bedrock_identifier": "minecraft:light_blue_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:yellow_concrete": { + "bedrock_identifier": "minecraft:yellow_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:lime_concrete": { + "bedrock_identifier": "minecraft:lime_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:pink_concrete": { + "bedrock_identifier": "minecraft:pink_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:gray_concrete": { + "bedrock_identifier": "minecraft:gray_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:light_gray_concrete": { + "bedrock_identifier": "minecraft:light_gray_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:cyan_concrete": { + "bedrock_identifier": "minecraft:cyan_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:purple_concrete": { + "bedrock_identifier": "minecraft:purple_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:blue_concrete": { + "bedrock_identifier": "minecraft:blue_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:brown_concrete": { + "bedrock_identifier": "minecraft:brown_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:green_concrete": { + "bedrock_identifier": "minecraft:green_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:red_concrete": { + "bedrock_identifier": "minecraft:red_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:black_concrete": { + "bedrock_identifier": "minecraft:black_concrete", + "block_hardness": 1.8, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:white_concrete_powder": { + "bedrock_identifier": "minecraft:white_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:orange_concrete_powder": { + "bedrock_identifier": "minecraft:orange_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:magenta_concrete_powder": { + "bedrock_identifier": "minecraft:magenta_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:light_blue_concrete_powder": { + "bedrock_identifier": "minecraft:light_blue_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:yellow_concrete_powder": { + "bedrock_identifier": "minecraft:yellow_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:lime_concrete_powder": { + "bedrock_identifier": "minecraft:lime_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:pink_concrete_powder": { + "bedrock_identifier": "minecraft:pink_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:gray_concrete_powder": { + "bedrock_identifier": "minecraft:gray_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:light_gray_concrete_powder": { + "bedrock_identifier": "minecraft:light_gray_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:cyan_concrete_powder": { + "bedrock_identifier": "minecraft:cyan_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:purple_concrete_powder": { + "bedrock_identifier": "minecraft:purple_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:blue_concrete_powder": { + "bedrock_identifier": "minecraft:blue_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:brown_concrete_powder": { + "bedrock_identifier": "minecraft:brown_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:green_concrete_powder": { + "bedrock_identifier": "minecraft:green_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:red_concrete_powder": { + "bedrock_identifier": "minecraft:red_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:black_concrete_powder": { + "bedrock_identifier": "minecraft:black_concrete_powder", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:kelp[age=0]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 0 + } + }, + "minecraft:kelp[age=1]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 1 + } + }, + "minecraft:kelp[age=2]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 2 + } + }, + "minecraft:kelp[age=3]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 3 + } + }, + "minecraft:kelp[age=4]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 4 + } + }, + "minecraft:kelp[age=5]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 5 + } + }, + "minecraft:kelp[age=6]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 6 + } + }, + "minecraft:kelp[age=7]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 7 + } + }, + "minecraft:kelp[age=8]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 8 + } + }, + "minecraft:kelp[age=9]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 9 + } + }, + "minecraft:kelp[age=10]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 10 + } + }, + "minecraft:kelp[age=11]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 11 + } + }, + "minecraft:kelp[age=12]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 12 + } + }, + "minecraft:kelp[age=13]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 13 + } + }, + "minecraft:kelp[age=14]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 14 + } + }, + "minecraft:kelp[age=15]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 15 + } + }, + "minecraft:kelp[age=16]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 16 + } + }, + "minecraft:kelp[age=17]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 17 + } + }, + "minecraft:kelp[age=18]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 18 + } + }, + "minecraft:kelp[age=19]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 19 + } + }, + "minecraft:kelp[age=20]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 20 + } + }, + "minecraft:kelp[age=21]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 21 + } + }, + "minecraft:kelp[age=22]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 22 + } + }, + "minecraft:kelp[age=23]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 23 + } + }, + "minecraft:kelp[age=24]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 24 + } + }, + "minecraft:kelp[age=25]": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 25 + } + }, + "minecraft:kelp_plant": { + "bedrock_identifier": "minecraft:kelp", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:kelp", + "can_break_with_hand": true, + "bedrock_states": { + "kelp_age": 0 + } + }, + "minecraft:dried_kelp_block": { + "bedrock_identifier": "minecraft:dried_kelp_block", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:turtle_egg[eggs=1,hatch=0]": { + "bedrock_identifier": "minecraft:turtle_egg", + "block_hardness": 0.5, + "collision_index": 249, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "turtle_egg_count": "one_egg", + "cracked_state": "no_cracks" + } + }, + "minecraft:turtle_egg[eggs=1,hatch=1]": { + "bedrock_identifier": "minecraft:turtle_egg", + "block_hardness": 0.5, + "collision_index": 249, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "turtle_egg_count": "one_egg", + "cracked_state": "cracked" + } + }, + "minecraft:turtle_egg[eggs=1,hatch=2]": { + "bedrock_identifier": "minecraft:turtle_egg", + "block_hardness": 0.5, + "collision_index": 249, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "turtle_egg_count": "one_egg", + "cracked_state": "max_cracked" + } + }, + "minecraft:turtle_egg[eggs=2,hatch=0]": { + "bedrock_identifier": "minecraft:turtle_egg", + "block_hardness": 0.5, + "collision_index": 250, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "turtle_egg_count": "two_egg", + "cracked_state": "no_cracks" + } + }, + "minecraft:turtle_egg[eggs=2,hatch=1]": { + "bedrock_identifier": "minecraft:turtle_egg", + "block_hardness": 0.5, + "collision_index": 250, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "turtle_egg_count": "two_egg", + "cracked_state": "cracked" + } + }, + "minecraft:turtle_egg[eggs=2,hatch=2]": { + "bedrock_identifier": "minecraft:turtle_egg", + "block_hardness": 0.5, + "collision_index": 250, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "turtle_egg_count": "two_egg", + "cracked_state": "max_cracked" + } + }, + "minecraft:turtle_egg[eggs=3,hatch=0]": { + "bedrock_identifier": "minecraft:turtle_egg", + "block_hardness": 0.5, + "collision_index": 250, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "turtle_egg_count": "three_egg", + "cracked_state": "no_cracks" + } + }, + "minecraft:turtle_egg[eggs=3,hatch=1]": { + "bedrock_identifier": "minecraft:turtle_egg", + "block_hardness": 0.5, + "collision_index": 250, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "turtle_egg_count": "three_egg", + "cracked_state": "cracked" + } + }, + "minecraft:turtle_egg[eggs=3,hatch=2]": { + "bedrock_identifier": "minecraft:turtle_egg", + "block_hardness": 0.5, + "collision_index": 250, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "turtle_egg_count": "three_egg", + "cracked_state": "max_cracked" + } + }, + "minecraft:turtle_egg[eggs=4,hatch=0]": { + "bedrock_identifier": "minecraft:turtle_egg", + "block_hardness": 0.5, + "collision_index": 250, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "turtle_egg_count": "four_egg", + "cracked_state": "no_cracks" + } + }, + "minecraft:turtle_egg[eggs=4,hatch=1]": { + "bedrock_identifier": "minecraft:turtle_egg", + "block_hardness": 0.5, + "collision_index": 250, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "turtle_egg_count": "four_egg", + "cracked_state": "cracked" + } + }, + "minecraft:turtle_egg[eggs=4,hatch=2]": { + "bedrock_identifier": "minecraft:turtle_egg", + "block_hardness": 0.5, + "collision_index": 250, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "turtle_egg_count": "four_egg", + "cracked_state": "max_cracked" + } + }, + "minecraft:sniffer_egg[hatch=0]": { + "bedrock_identifier": "minecraft:sniffer_egg", + "block_hardness": 0.5, + "collision_index": 251, + "can_break_with_hand": true, + "bedrock_states": { + "cracked_state": "no_cracks" + } + }, + "minecraft:sniffer_egg[hatch=1]": { + "bedrock_identifier": "minecraft:sniffer_egg", + "block_hardness": 0.5, + "collision_index": 251, + "can_break_with_hand": true, + "bedrock_states": { + "cracked_state": "cracked" + } + }, + "minecraft:sniffer_egg[hatch=2]": { + "bedrock_identifier": "minecraft:sniffer_egg", + "block_hardness": 0.5, + "collision_index": 251, + "can_break_with_hand": true, + "bedrock_states": { + "cracked_state": "max_cracked" + } + }, + "minecraft:dead_tube_coral_block": { + "bedrock_identifier": "minecraft:coral_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "blue", + "dead_bit": true + } + }, + "minecraft:dead_brain_coral_block": { + "bedrock_identifier": "minecraft:coral_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "pink", + "dead_bit": true + } + }, + "minecraft:dead_bubble_coral_block": { + "bedrock_identifier": "minecraft:coral_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "purple", + "dead_bit": true + } + }, + "minecraft:dead_fire_coral_block": { + "bedrock_identifier": "minecraft:coral_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "red", + "dead_bit": true + } + }, + "minecraft:dead_horn_coral_block": { + "bedrock_identifier": "minecraft:coral_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "yellow", + "dead_bit": true + } + }, + "minecraft:tube_coral_block": { + "bedrock_identifier": "minecraft:coral_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "blue", + "dead_bit": false + } + }, + "minecraft:brain_coral_block": { + "bedrock_identifier": "minecraft:coral_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "pink", + "dead_bit": false + } + }, + "minecraft:bubble_coral_block": { + "bedrock_identifier": "minecraft:coral_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "purple", + "dead_bit": false + } + }, + "minecraft:fire_coral_block": { + "bedrock_identifier": "minecraft:coral_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "red", + "dead_bit": false + } + }, + "minecraft:horn_coral_block": { + "bedrock_identifier": "minecraft:coral_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "yellow", + "dead_bit": false + } + }, + "minecraft:dead_tube_coral[waterlogged=true]": { + "bedrock_identifier": "minecraft:dead_tube_coral", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false + }, + "minecraft:dead_tube_coral[waterlogged=false]": { + "bedrock_identifier": "minecraft:dead_tube_coral", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false + }, + "minecraft:dead_brain_coral[waterlogged=true]": { + "bedrock_identifier": "minecraft:dead_brain_coral", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false + }, + "minecraft:dead_brain_coral[waterlogged=false]": { + "bedrock_identifier": "minecraft:dead_brain_coral", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false + }, + "minecraft:dead_bubble_coral[waterlogged=true]": { + "bedrock_identifier": "minecraft:dead_bubble_coral", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false + }, + "minecraft:dead_bubble_coral[waterlogged=false]": { + "bedrock_identifier": "minecraft:dead_bubble_coral", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false + }, + "minecraft:dead_fire_coral[waterlogged=true]": { + "bedrock_identifier": "minecraft:dead_fire_coral", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false + }, + "minecraft:dead_fire_coral[waterlogged=false]": { + "bedrock_identifier": "minecraft:dead_fire_coral", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false + }, + "minecraft:dead_horn_coral[waterlogged=true]": { + "bedrock_identifier": "minecraft:dead_horn_coral", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false + }, + "minecraft:dead_horn_coral[waterlogged=false]": { + "bedrock_identifier": "minecraft:dead_horn_coral", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false + }, + "minecraft:tube_coral[waterlogged=true]": { + "bedrock_identifier": "minecraft:tube_coral", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:tube_coral[waterlogged=false]": { + "bedrock_identifier": "minecraft:tube_coral", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:brain_coral[waterlogged=true]": { + "bedrock_identifier": "minecraft:brain_coral", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:brain_coral[waterlogged=false]": { + "bedrock_identifier": "minecraft:brain_coral", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:bubble_coral[waterlogged=true]": { + "bedrock_identifier": "minecraft:bubble_coral", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:bubble_coral[waterlogged=false]": { + "bedrock_identifier": "minecraft:bubble_coral", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:fire_coral[waterlogged=true]": { + "bedrock_identifier": "minecraft:fire_coral", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:fire_coral[waterlogged=false]": { + "bedrock_identifier": "minecraft:fire_coral", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:horn_coral[waterlogged=true]": { + "bedrock_identifier": "minecraft:horn_coral", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:horn_coral[waterlogged=false]": { + "bedrock_identifier": "minecraft:horn_coral", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:dead_tube_coral_fan[waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_dead", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "blue", + "coral_fan_direction": 0 + } + }, + "minecraft:dead_tube_coral_fan[waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_dead", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "blue", + "coral_fan_direction": 0 + } + }, + "minecraft:dead_brain_coral_fan[waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_dead", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "pink", + "coral_fan_direction": 0 + } + }, + "minecraft:dead_brain_coral_fan[waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_dead", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "pink", + "coral_fan_direction": 0 + } + }, + "minecraft:dead_bubble_coral_fan[waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_dead", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "purple", + "coral_fan_direction": 0 + } + }, + "minecraft:dead_bubble_coral_fan[waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_dead", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "purple", + "coral_fan_direction": 0 + } + }, + "minecraft:dead_fire_coral_fan[waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_dead", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "red", + "coral_fan_direction": 0 + } + }, + "minecraft:dead_fire_coral_fan[waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_dead", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "red", + "coral_fan_direction": 0 + } + }, + "minecraft:dead_horn_coral_fan[waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_dead", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "yellow", + "coral_fan_direction": 0 + } + }, + "minecraft:dead_horn_coral_fan[waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_dead", + "block_hardness": 0.0, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "coral_color": "yellow", + "coral_fan_direction": 0 + } + }, + "minecraft:tube_coral_fan[waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "coral_color": "blue", + "coral_fan_direction": 0 + } + }, + "minecraft:tube_coral_fan[waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "coral_color": "blue", + "coral_fan_direction": 0 + } + }, + "minecraft:brain_coral_fan[waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "coral_color": "pink", + "coral_fan_direction": 0 + } + }, + "minecraft:brain_coral_fan[waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "coral_color": "pink", + "coral_fan_direction": 0 + } + }, + "minecraft:bubble_coral_fan[waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "coral_color": "purple", + "coral_fan_direction": 0 + } + }, + "minecraft:bubble_coral_fan[waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "coral_color": "purple", + "coral_fan_direction": 0 + } + }, + "minecraft:fire_coral_fan[waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "coral_color": "red", + "coral_fan_direction": 0 + } + }, + "minecraft:fire_coral_fan[waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "coral_color": "red", + "coral_fan_direction": 0 + } + }, + "minecraft:horn_coral_fan[waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "coral_color": "yellow", + "coral_fan_direction": 0 + } + }, + "minecraft:horn_coral_fan[waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "coral_color": "yellow", + "coral_fan_direction": 0 + } + }, + "minecraft:dead_tube_coral_wall_fan[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_tube_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_tube_coral_wall_fan[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_tube_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_tube_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_tube_coral_wall_fan[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_tube_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_tube_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_tube_coral_wall_fan[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_tube_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_tube_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_tube_coral_wall_fan[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_tube_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_brain_coral_wall_fan[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_brain_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_brain_coral_wall_fan[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_brain_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_brain_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_brain_coral_wall_fan[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_brain_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_brain_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_brain_coral_wall_fan[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_brain_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_brain_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_brain_coral_wall_fan[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_brain_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_bubble_coral_wall_fan[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_bubble_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_bubble_coral_wall_fan[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_bubble_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_bubble_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_bubble_coral_wall_fan[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_bubble_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_bubble_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_bubble_coral_wall_fan[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_bubble_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_bubble_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_bubble_coral_wall_fan[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_bubble_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_fire_coral_wall_fan[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_fire_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_fire_coral_wall_fan[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_fire_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_fire_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_fire_coral_wall_fan[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_fire_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_fire_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_fire_coral_wall_fan[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_fire_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_fire_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_fire_coral_wall_fan[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_fire_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": true, + "dead_bit": true + } + }, + "minecraft:dead_horn_coral_wall_fan[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_horn_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_horn_coral_wall_fan[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_horn_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_horn_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_horn_coral_wall_fan[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_horn_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_horn_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_horn_coral_wall_fan[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_horn_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_horn_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:dead_horn_coral_wall_fan[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:dead_horn_coral_fan", + "can_break_with_hand": false, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": false, + "dead_bit": true + } + }, + "minecraft:tube_coral_wall_fan[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:tube_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:tube_coral_wall_fan[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:tube_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:tube_coral_wall_fan[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:tube_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:tube_coral_wall_fan[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:tube_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:tube_coral_wall_fan[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:tube_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:tube_coral_wall_fan[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:tube_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:tube_coral_wall_fan[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:tube_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:tube_coral_wall_fan[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:tube_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:brain_coral_wall_fan[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:brain_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:brain_coral_wall_fan[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:brain_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:brain_coral_wall_fan[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:brain_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:brain_coral_wall_fan[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:brain_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:brain_coral_wall_fan[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:brain_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:brain_coral_wall_fan[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:brain_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:brain_coral_wall_fan[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:brain_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:brain_coral_wall_fan[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:brain_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:bubble_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:bubble_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:bubble_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:bubble_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:bubble_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:bubble_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:bubble_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:bubble_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:fire_coral_wall_fan[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:fire_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:fire_coral_wall_fan[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:fire_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:fire_coral_wall_fan[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:fire_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:fire_coral_wall_fan[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:fire_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:fire_coral_wall_fan[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:fire_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:fire_coral_wall_fan[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:fire_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:fire_coral_wall_fan[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:fire_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:fire_coral_wall_fan[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang2", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:fire_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": true, + "dead_bit": false + } + }, + "minecraft:horn_coral_wall_fan[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:horn_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:horn_coral_wall_fan[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:horn_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 2, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:horn_coral_wall_fan[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:horn_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:horn_coral_wall_fan[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:horn_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 3, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:horn_coral_wall_fan[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:horn_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:horn_coral_wall_fan[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:horn_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 0, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:horn_coral_wall_fan[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:horn_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:horn_coral_wall_fan[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:coral_fan_hang3", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:horn_coral_fan", + "can_break_with_hand": true, + "bedrock_states": { + "coral_direction": 1, + "coral_hang_type_bit": false, + "dead_bit": false + } + }, + "minecraft:sea_pickle[pickles=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:sea_pickle", + "block_hardness": 0.0, + "collision_index": 252, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dead_bit": false, + "cluster_count": 0 + } + }, + "minecraft:sea_pickle[pickles=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:sea_pickle", + "block_hardness": 0.0, + "collision_index": 252, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dead_bit": true, + "cluster_count": 0 + } + }, + "minecraft:sea_pickle[pickles=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:sea_pickle", + "block_hardness": 0.0, + "collision_index": 253, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dead_bit": false, + "cluster_count": 1 + } + }, + "minecraft:sea_pickle[pickles=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:sea_pickle", + "block_hardness": 0.0, + "collision_index": 253, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dead_bit": true, + "cluster_count": 1 + } + }, + "minecraft:sea_pickle[pickles=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:sea_pickle", + "block_hardness": 0.0, + "collision_index": 254, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dead_bit": false, + "cluster_count": 2 + } + }, + "minecraft:sea_pickle[pickles=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:sea_pickle", + "block_hardness": 0.0, + "collision_index": 254, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dead_bit": true, + "cluster_count": 2 + } + }, + "minecraft:sea_pickle[pickles=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:sea_pickle", + "block_hardness": 0.0, + "collision_index": 255, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dead_bit": false, + "cluster_count": 3 + } + }, + "minecraft:sea_pickle[pickles=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:sea_pickle", + "block_hardness": 0.0, + "collision_index": 255, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dead_bit": true, + "cluster_count": 3 + } + }, + "minecraft:blue_ice": { + "bedrock_identifier": "minecraft:blue_ice", + "block_hardness": 2.8, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:conduit[waterlogged=true]": { + "bedrock_identifier": "minecraft:conduit", + "block_hardness": 3.0, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true + }, + "minecraft:conduit[waterlogged=false]": { + "bedrock_identifier": "minecraft:conduit", + "block_hardness": 3.0, + "collision_index": 256, + "has_block_entity": true, + "can_break_with_hand": true + }, + "minecraft:bamboo_sapling": { + "bedrock_identifier": "minecraft:bamboo_sapling", + "block_hardness": 1.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:bamboo", + "can_break_with_hand": true, + "bedrock_states": { + "age_bit": false, + "sapling_type": "oak" + } + }, + "minecraft:bamboo[age=0,leaves=none,stage=0]": { + "bedrock_identifier": "minecraft:bamboo", + "block_hardness": 1.0, + "collision_index": 257, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "bamboo_stalk_thickness": "thin", + "bamboo_leaf_size": "no_leaves", + "age_bit": false + } + }, + "minecraft:bamboo[age=0,leaves=none,stage=1]": { + "bedrock_identifier": "minecraft:bamboo", + "block_hardness": 1.0, + "collision_index": 257, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "bamboo_stalk_thickness": "thin", + "bamboo_leaf_size": "no_leaves", + "age_bit": false + } + }, + "minecraft:bamboo[age=0,leaves=small,stage=0]": { + "bedrock_identifier": "minecraft:bamboo", + "block_hardness": 1.0, + "collision_index": 257, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "bamboo_stalk_thickness": "thin", + "bamboo_leaf_size": "small_leaves", + "age_bit": false + } + }, + "minecraft:bamboo[age=0,leaves=small,stage=1]": { + "bedrock_identifier": "minecraft:bamboo", + "block_hardness": 1.0, + "collision_index": 257, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "bamboo_stalk_thickness": "thin", + "bamboo_leaf_size": "small_leaves", + "age_bit": false + } + }, + "minecraft:bamboo[age=0,leaves=large,stage=0]": { + "bedrock_identifier": "minecraft:bamboo", + "block_hardness": 1.0, + "collision_index": 257, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "bamboo_stalk_thickness": "thin", + "bamboo_leaf_size": "large_leaves", + "age_bit": false + } + }, + "minecraft:bamboo[age=0,leaves=large,stage=1]": { + "bedrock_identifier": "minecraft:bamboo", + "block_hardness": 1.0, + "collision_index": 257, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "bamboo_stalk_thickness": "thin", + "bamboo_leaf_size": "large_leaves", + "age_bit": false + } + }, + "minecraft:bamboo[age=1,leaves=none,stage=0]": { + "bedrock_identifier": "minecraft:bamboo", + "block_hardness": 1.0, + "collision_index": 257, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "bamboo_stalk_thickness": "thick", + "bamboo_leaf_size": "no_leaves", + "age_bit": false + } + }, + "minecraft:bamboo[age=1,leaves=none,stage=1]": { + "bedrock_identifier": "minecraft:bamboo", + "block_hardness": 1.0, + "collision_index": 257, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "bamboo_stalk_thickness": "thick", + "bamboo_leaf_size": "no_leaves", + "age_bit": false + } + }, + "minecraft:bamboo[age=1,leaves=small,stage=0]": { + "bedrock_identifier": "minecraft:bamboo", + "block_hardness": 1.0, + "collision_index": 257, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "bamboo_stalk_thickness": "thick", + "bamboo_leaf_size": "small_leaves", + "age_bit": false + } + }, + "minecraft:bamboo[age=1,leaves=small,stage=1]": { + "bedrock_identifier": "minecraft:bamboo", + "block_hardness": 1.0, + "collision_index": 257, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "bamboo_stalk_thickness": "thick", + "bamboo_leaf_size": "small_leaves", + "age_bit": false + } + }, + "minecraft:bamboo[age=1,leaves=large,stage=0]": { + "bedrock_identifier": "minecraft:bamboo", + "block_hardness": 1.0, + "collision_index": 257, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "bamboo_stalk_thickness": "thick", + "bamboo_leaf_size": "large_leaves", + "age_bit": false + } + }, + "minecraft:bamboo[age=1,leaves=large,stage=1]": { + "bedrock_identifier": "minecraft:bamboo", + "block_hardness": 1.0, + "collision_index": 257, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true, + "bedrock_states": { + "bamboo_stalk_thickness": "thick", + "bamboo_leaf_size": "large_leaves", + "age_bit": false + } + }, + "minecraft:potted_bamboo": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:bamboo", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:void_air": { + "bedrock_identifier": "minecraft:air", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:cave_air": { + "bedrock_identifier": "minecraft:air", + "block_hardness": 0.0, + "collision_index": 0, + "pick_item": "minecraft:air", + "can_break_with_hand": true + }, + "minecraft:bubble_column[drag=true]": { + "bedrock_identifier": "minecraft:bubble_column", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:air", + "can_break_with_hand": true, + "bedrock_states": { + "drag_down": true + } + }, + "minecraft:bubble_column[drag=false]": { + "bedrock_identifier": "minecraft:bubble_column", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:air", + "can_break_with_hand": true, + "bedrock_states": { + "drag_down": false + } + }, + "minecraft:polished_granite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_granite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_red_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_red_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_stone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_diorite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:mossy_cobblestone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:mossy_cobblestone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:end_stone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:end_brick_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:stone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:stone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:stone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:stone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:normal_stone_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_sandstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_sandstone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:smooth_quartz_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:smooth_quartz_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:granite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:granite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:granite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:granite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:granite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:andesite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:red_nether_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_nether_brick_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_andesite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_andesite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 3 + } + }, + "minecraft:diorite_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 2 + } + }, + "minecraft:diorite_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 1 + } + }, + "minecraft:diorite_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": true, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:diorite_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:diorite_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "upside_down_bit": false, + "weirdo_direction": 0 + } + }, + "minecraft:polished_granite_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_granite", + "minecraft:vertical_half": "top" + } + }, + "minecraft:polished_granite_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_granite", + "minecraft:vertical_half": "top" + } + }, + "minecraft:polished_granite_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_granite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_granite_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_granite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_granite_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_granite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_granite_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_granite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_red_sandstone_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "smooth_red_sandstone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:smooth_red_sandstone_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "smooth_red_sandstone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "smooth_red_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_red_sandstone_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "smooth_red_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_red_sandstone_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "smooth_red_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_red_sandstone_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "smooth_red_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:mossy_stone_brick_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "mossy_stone_brick", + "minecraft:vertical_half": "top" + } + }, + "minecraft:mossy_stone_brick_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "mossy_stone_brick", + "minecraft:vertical_half": "top" + } + }, + "minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "mossy_stone_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:mossy_stone_brick_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "mossy_stone_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:mossy_stone_brick_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab4", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "mossy_stone_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:mossy_stone_brick_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab4", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "mossy_stone_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_diorite_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_diorite", + "minecraft:vertical_half": "top" + } + }, + "minecraft:polished_diorite_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_diorite", + "minecraft:vertical_half": "top" + } + }, + "minecraft:polished_diorite_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_diorite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_diorite_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_diorite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_diorite_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_diorite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_diorite_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_diorite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:mossy_cobblestone_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "mossy_cobblestone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:mossy_cobblestone_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "mossy_cobblestone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "mossy_cobblestone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:mossy_cobblestone_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "mossy_cobblestone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:mossy_cobblestone_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "mossy_cobblestone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:mossy_cobblestone_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "mossy_cobblestone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:end_stone_brick_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "end_stone_brick", + "minecraft:vertical_half": "top" + } + }, + "minecraft:end_stone_brick_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "end_stone_brick", + "minecraft:vertical_half": "top" + } + }, + "minecraft:end_stone_brick_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "end_stone_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:end_stone_brick_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "end_stone_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:end_stone_brick_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "end_stone_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:end_stone_brick_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "end_stone_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_sandstone_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "smooth_sandstone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:smooth_sandstone_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "smooth_sandstone", + "minecraft:vertical_half": "top" + } + }, + "minecraft:smooth_sandstone_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "smooth_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_sandstone_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "smooth_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_sandstone_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "smooth_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_sandstone_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "smooth_sandstone", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_quartz_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "smooth_quartz", + "minecraft:vertical_half": "top" + } + }, + "minecraft:smooth_quartz_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "smooth_quartz", + "minecraft:vertical_half": "top" + } + }, + "minecraft:smooth_quartz_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "smooth_quartz", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_quartz_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "smooth_quartz", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_quartz_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "smooth_quartz", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:smooth_quartz_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab4", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_4": "smooth_quartz", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:granite_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "granite", + "minecraft:vertical_half": "top" + } + }, + "minecraft:granite_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "granite", + "minecraft:vertical_half": "top" + } + }, + "minecraft:granite_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "granite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:granite_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "granite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:granite_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "granite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:granite_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "granite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:andesite_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "andesite", + "minecraft:vertical_half": "top" + } + }, + "minecraft:andesite_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "andesite", + "minecraft:vertical_half": "top" + } + }, + "minecraft:andesite_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "andesite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:andesite_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "andesite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:andesite_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "andesite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:andesite_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "andesite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:red_nether_brick_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "red_nether_brick", + "minecraft:vertical_half": "top" + } + }, + "minecraft:red_nether_brick_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "red_nether_brick", + "minecraft:vertical_half": "top" + } + }, + "minecraft:red_nether_brick_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "red_nether_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:red_nether_brick_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "red_nether_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:red_nether_brick_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "red_nether_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:red_nether_brick_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab2", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_2": "red_nether_brick", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_andesite_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_andesite", + "minecraft:vertical_half": "top" + } + }, + "minecraft:polished_andesite_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_andesite", + "minecraft:vertical_half": "top" + } + }, + "minecraft:polished_andesite_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_andesite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_andesite_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_andesite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_andesite_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_andesite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_andesite_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "polished_andesite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:diorite_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "diorite", + "minecraft:vertical_half": "top" + } + }, + "minecraft:diorite_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "diorite", + "minecraft:vertical_half": "top" + } + }, + "minecraft:diorite_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "diorite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:diorite_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "diorite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:diorite_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "diorite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:diorite_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_stone_block_slab3", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "stone_slab_type_3": "diorite", + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": "none", + "wall_post_bit": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": "none", + "wall_post_bit": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "brick" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_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": { + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_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": { + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:prismarine_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "prismarine" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 130, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 130, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": "none", + "wall_post_bit": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 130, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 130, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 131, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 131, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 131, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 131, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 134, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 134, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 134, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 134, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 138, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 138, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 138, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 138, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 146, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 146, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 146, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 146, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:red_sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "red_sandstone" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_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": { + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_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": { + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:mossy_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "mossy_stone_brick" + } + }, + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_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": { + "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": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_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": { + "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": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "granite" + } + }, + "minecraft:granite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=low,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:granite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "granite" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_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": { + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_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": { + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "minecraft:stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "stone_brick" + } + }, + "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": 129, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 129, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 144, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 144, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 144, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 144, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "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": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "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": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "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, + "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": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 130, + "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" + } + }, + "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, + "collision_index": 130, + "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" + } + }, + "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, + "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": "none", + "wall_post_bit": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 130, + "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" + } + }, + "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, + "collision_index": 130, + "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" + } + }, + "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, + "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" + } + }, + "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, + "collision_index": 131, + "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" + } + }, + "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, + "collision_index": 131, + "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" + } + }, + "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, + "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" + } + }, + "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, + "collision_index": 131, + "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" + } + }, + "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, + "collision_index": 131, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 134, + "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" + } + }, + "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, + "collision_index": 135, + "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" + } + }, + "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, + "collision_index": 135, + "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" + } + }, + "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, + "collision_index": 134, + "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" + } + }, + "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, + "collision_index": 135, + "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" + } + }, + "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, + "collision_index": 135, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 134, + "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" + } + }, + "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, + "collision_index": 135, + "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" + } + }, + "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, + "collision_index": 135, + "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" + } + }, + "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, + "collision_index": 134, + "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" + } + }, + "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, + "collision_index": 135, + "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" + } + }, + "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, + "collision_index": 135, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 138, + "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" + } + }, + "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, + "collision_index": 139, + "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" + } + }, + "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, + "collision_index": 139, + "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" + } + }, + "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, + "collision_index": 138, + "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" + } + }, + "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, + "collision_index": 139, + "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" + } + }, + "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, + "collision_index": 139, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 142, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "collision_index": 142, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 142, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "collision_index": 142, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 138, + "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" + } + }, + "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, + "collision_index": 139, + "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" + } + }, + "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, + "collision_index": 139, + "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" + } + }, + "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, + "collision_index": 138, + "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" + } + }, + "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, + "collision_index": 139, + "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" + } + }, + "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, + "collision_index": 139, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 142, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "collision_index": 142, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 142, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "collision_index": 142, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "collision_index": 143, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 146, + "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" + } + }, + "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, + "collision_index": 147, + "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" + } + }, + "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, + "collision_index": 147, + "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" + } + }, + "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, + "collision_index": 146, + "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" + } + }, + "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, + "collision_index": 147, + "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" + } + }, + "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, + "collision_index": 147, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 150, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "collision_index": 150, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 150, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "collision_index": 150, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 154, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "collision_index": 154, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 154, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "collision_index": 154, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 146, + "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" + } + }, + "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, + "collision_index": 147, + "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" + } + }, + "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, + "collision_index": 147, + "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" + } + }, + "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, + "collision_index": 146, + "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" + } + }, + "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, + "collision_index": 147, + "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" + } + }, + "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, + "collision_index": 147, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 150, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "collision_index": 150, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 150, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "collision_index": 150, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "collision_index": 151, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 154, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "collision_index": 154, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 154, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "collision_index": 154, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "collision_index": 155, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "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": true, + "wall_block_type": "nether_brick" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 158, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "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, + "collision_index": 159, + "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" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_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": { + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_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": { + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=low,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=low,south=tall,up=false,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": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=low,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=none,north=tall,south=tall,up=false,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": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=none,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,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": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=low,up=false,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": "none", + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=none,south=tall,up=false,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": "none", + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "none", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "short", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=none,up=false,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": "none", + "wall_connection_type_west": "tall", + "wall_post_bit": false, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=true,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": true, + "wall_block_type": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:andesite_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "andesite" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": "none", + "wall_post_bit": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 146, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 147, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 150, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 151, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 154, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 155, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "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": true, + "wall_block_type": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:red_nether_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "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": "red_nether_brick" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 130, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 130, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": "none", + "wall_post_bit": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 130, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 130, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 131, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 131, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 131, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 131, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 134, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 134, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 134, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 134, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 135, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 138, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 138, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 138, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 138, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 139, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 142, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 143, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 146, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 146, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 146, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 146, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 147, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 150, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 151, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 154, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 155, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "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": true, + "wall_block_type": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 158, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:sandstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 0.8, + "collision_index": 159, + "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": "sandstone" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 130, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 130, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": "none", + "wall_post_bit": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 130, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 130, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 131, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 131, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 131, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 131, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 134, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 135, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 135, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 134, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 135, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 135, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 134, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 135, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 135, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 134, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 135, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 135, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 138, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 139, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 139, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 138, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 139, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 139, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 142, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 142, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 142, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 142, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 138, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 139, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 139, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 138, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 139, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 139, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 142, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 142, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 142, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 142, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 143, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 146, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 147, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 147, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 146, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 147, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 147, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 150, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 150, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 150, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 150, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 154, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 154, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 154, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 154, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 146, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 147, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 147, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 146, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 147, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 147, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 150, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 150, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 150, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 150, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 151, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 154, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 154, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 154, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 154, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 155, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "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": true, + "wall_block_type": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 158, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "minecraft:end_stone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobblestone_wall", + "block_hardness": 3.0, + "collision_index": 159, + "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": "end_brick" + } + }, + "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": 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": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "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": 130, + "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": "diorite" + } + }, + "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": 130, + "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": "diorite" + } + }, + "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": 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": "none", + "wall_post_bit": true, + "wall_block_type": "diorite" + } + }, + "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": 130, + "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": "diorite" + } + }, + "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": 130, + "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": "diorite" + } + }, + "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": { + "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: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": 131, + "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": "diorite" + } + }, + "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": 131, + "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": "diorite" + } + }, + "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": { + "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: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": 131, + "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": "diorite" + } + }, + "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": 131, + "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": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 134, + "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": "diorite" + } + }, + "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": 135, + "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": "diorite" + } + }, + "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": 135, + "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": "diorite" + } + }, + "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": 134, + "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": "diorite" + } + }, + "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": 135, + "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": "diorite" + } + }, + "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": 135, + "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": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 134, + "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": "diorite" + } + }, + "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": 135, + "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": "diorite" + } + }, + "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": 135, + "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": "diorite" + } + }, + "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": 134, + "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": "diorite" + } + }, + "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": 135, + "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": "diorite" + } + }, + "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": 135, + "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": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 138, + "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": "diorite" + } + }, + "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": 139, + "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": "diorite" + } + }, + "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": 139, + "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": "diorite" + } + }, + "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": 138, + "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": "diorite" + } + }, + "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": 139, + "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": "diorite" + } + }, + "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": 139, + "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": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 142, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 142, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 142, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 142, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 138, + "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": "diorite" + } + }, + "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": 139, + "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": "diorite" + } + }, + "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": 139, + "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": "diorite" + } + }, + "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": 138, + "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": "diorite" + } + }, + "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": 139, + "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": "diorite" + } + }, + "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": 139, + "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": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 142, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 142, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 142, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 142, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 143, + "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": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 146, + "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": "diorite" + } + }, + "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": 147, + "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": "diorite" + } + }, + "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": 147, + "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": "diorite" + } + }, + "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": 146, + "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": "diorite" + } + }, + "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": 147, + "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": "diorite" + } + }, + "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": 147, + "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": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 150, + "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": "diorite" + } + }, + "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": 151, + "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": "diorite" + } + }, + "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": 151, + "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": "diorite" + } + }, + "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": 150, + "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": "diorite" + } + }, + "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": 151, + "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": "diorite" + } + }, + "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": 151, + "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": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 150, + "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": "diorite" + } + }, + "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": 151, + "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": "diorite" + } + }, + "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": 151, + "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": "diorite" + } + }, + "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": 150, + "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": "diorite" + } + }, + "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": 151, + "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": "diorite" + } + }, + "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": 151, + "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": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 154, + "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": "diorite" + } + }, + "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": 155, + "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": "diorite" + } + }, + "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": 155, + "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": "diorite" + } + }, + "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": 154, + "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": "diorite" + } + }, + "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": 155, + "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": "diorite" + } + }, + "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": 155, + "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": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 158, + "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": "diorite" + } + }, + "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": 159, + "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": "diorite" + } + }, + "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": 159, + "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": "diorite" + } + }, + "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": 158, + "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": "diorite" + } + }, + "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": 159, + "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": "diorite" + } + }, + "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": 159, + "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": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 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": true, + "wall_block_type": "diorite" + } + }, + "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": 158, + "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": "diorite" + } + }, + "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": 159, + "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": "diorite" + } + }, + "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": 159, + "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": "diorite" + } + }, + "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": 158, + "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": "diorite" + } + }, + "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": 159, + "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": "diorite" + } + }, + "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": 159, + "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": "diorite" + } + }, + "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 154, + "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": 155, + "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": 155, + "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": 154, + "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": 155, + "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": 155, + "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 158, + "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": 159, + "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": 159, + "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": 158, + "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": 159, + "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": 159, + "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 158, + "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": 159, + "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": 159, + "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": 158, + "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": 159, + "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": 159, + "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 146, + "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": 147, + "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": 147, + "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": 146, + "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": 147, + "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": 147, + "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 150, + "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": 151, + "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": 151, + "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": 150, + "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": 151, + "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": 151, + "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 150, + "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": 151, + "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": 151, + "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": 150, + "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": 151, + "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": 151, + "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 154, + "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": 155, + "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": 155, + "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": 154, + "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": 155, + "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": 155, + "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 158, + "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": 159, + "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": 159, + "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": 158, + "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": 159, + "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": 159, + "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 158, + "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": 159, + "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": 159, + "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": 158, + "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": 159, + "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": 159, + "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 154, + "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": 155, + "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": 155, + "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": 154, + "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": 155, + "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": 155, + "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 158, + "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": 159, + "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": 159, + "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": 158, + "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": 159, + "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": 159, + "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 158, + "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": 159, + "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": 159, + "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": 158, + "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": 159, + "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": 159, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": 258, + "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": { + "minecraft:cardinal_direction": "north" + } + }, + "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": { + "minecraft:cardinal_direction": "north" + } + }, + "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": { + "minecraft:cardinal_direction": "south" + } + }, + "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": { + "minecraft:cardinal_direction": "south" + } + }, + "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": { + "minecraft:cardinal_direction": "west" + } + }, + "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": { + "minecraft:cardinal_direction": "west" + } + }, + "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": { + "minecraft:cardinal_direction": "east" + } + }, + "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": { + "minecraft:cardinal_direction": "east" + } + }, + "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": { + "minecraft:cardinal_direction": "north" + } + }, + "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": { + "minecraft:cardinal_direction": "north" + } + }, + "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": { + "minecraft:cardinal_direction": "south" + } + }, + "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": { + "minecraft:cardinal_direction": "south" + } + }, + "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": { + "minecraft:cardinal_direction": "west" + } + }, + "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": { + "minecraft:cardinal_direction": "west" + } + }, + "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": { + "minecraft:cardinal_direction": "east" + } + }, + "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": { + "minecraft:cardinal_direction": "east" + } + }, + "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": 259, + "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": 259, + "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": 260, + "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": 260, + "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": 261, + "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": 262, + "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": 263, + "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": 264, + "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": 265, + "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": 265, + "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": 266, + "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": 266, + "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": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:lectern[facing=north,has_book=true,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:lectern[facing=north,has_book=false,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:lectern[facing=north,has_book=false,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:lectern[facing=south,has_book=true,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:lectern[facing=south,has_book=true,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:lectern[facing=south,has_book=false,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:lectern[facing=south,has_book=false,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:lectern[facing=west,has_book=true,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:lectern[facing=west,has_book=true,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:lectern[facing=west,has_book=false,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:lectern[facing=west,has_book=false,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:lectern[facing=east,has_book=true,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:lectern[facing=east,has_book=true,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:lectern[facing=east,has_book=false,powered=true]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:lectern[facing=east,has_book=false,powered=false]": { + "bedrock_identifier": "minecraft:lectern", + "block_hardness": 2.5, + "collision_index": 267, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "powered_bit": false, + "minecraft:cardinal_direction": "east" + } + }, + "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": 268, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:stonecutter[facing=south]": { + "bedrock_identifier": "minecraft:stonecutter_block", + "block_hardness": 3.5, + "collision_index": 268, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:stonecutter[facing=west]": { + "bedrock_identifier": "minecraft:stonecutter_block", + "block_hardness": 3.5, + "collision_index": 268, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:stonecutter[facing=east]": { + "bedrock_identifier": "minecraft:stonecutter_block", + "block_hardness": 3.5, + "collision_index": 268, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:bell[attachment=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:bell", + "block_hardness": 5.0, + "collision_index": 269, + "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": 269, + "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": 269, + "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": 269, + "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": 270, + "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": 270, + "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": 270, + "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": 270, + "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": 271, + "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": 271, + "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": 271, + "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": 271, + "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": 271, + "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": 271, + "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": 271, + "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": 271, + "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": 272, + "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": 272, + "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": 273, + "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": 273, + "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": 274, + "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": 274, + "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": 275, + "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": 275, + "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": 276, + "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": 276, + "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": 276, + "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": 276, + "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": 277, + "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": 277, + "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": 277, + "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": 277, + "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": 278, + "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": 278, + "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": 279, + "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": 279, + "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": 278, + "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": 278, + "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": 279, + "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": 279, + "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": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:campfire[facing=north,lit=false,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:campfire[facing=south,lit=true,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:campfire[facing=south,lit=true,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:campfire[facing=south,lit=false,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:campfire[facing=south,lit=false,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:campfire[facing=west,lit=true,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:campfire[facing=west,lit=true,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:campfire[facing=west,lit=false,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:campfire[facing=west,lit=false,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:campfire[facing=east,lit=true,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:campfire[facing=east,lit=true,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:campfire[facing=east,lit=false,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:campfire[facing=east,lit=false,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:soul_campfire[facing=north,lit=true,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:soul_campfire[facing=north,lit=false,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:soul_campfire[facing=south,lit=true,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:soul_campfire[facing=south,lit=false,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:soul_campfire[facing=west,lit=true,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:soul_campfire[facing=west,lit=true,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:soul_campfire[facing=west,lit=true,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:soul_campfire[facing=west,lit=true,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:soul_campfire[facing=west,lit=false,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:soul_campfire[facing=west,lit=false,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:soul_campfire[facing=west,lit=false,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:soul_campfire[facing=west,lit=false,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:soul_campfire[facing=east,lit=true,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:soul_campfire[facing=east,lit=true,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:soul_campfire[facing=east,lit=true,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:soul_campfire[facing=east,lit=true,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": false, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:soul_campfire[facing=east,lit=false,signal_fire=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:soul_campfire[facing=east,lit=false,signal_fire=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:soul_campfire[facing=east,lit=false,signal_fire=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:soul_campfire", + "block_hardness": 2.0, + "collision_index": 280, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "extinguished": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:sweet_berry_bush[age=0]": { + "bedrock_identifier": "minecraft:sweet_berry_bush", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:sweet_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 0 + } + }, + "minecraft:sweet_berry_bush[age=1]": { + "bedrock_identifier": "minecraft:sweet_berry_bush", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:sweet_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 1 + } + }, + "minecraft:sweet_berry_bush[age=2]": { + "bedrock_identifier": "minecraft:sweet_berry_bush", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:sweet_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 2 + } + }, + "minecraft:sweet_berry_bush[age=3]": { + "bedrock_identifier": "minecraft:sweet_berry_bush", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:sweet_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 3 + } + }, + "minecraft:warped_stem[axis=x]": { + "bedrock_identifier": "minecraft:warped_stem", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:warped_stem[axis=y]": { + "bedrock_identifier": "minecraft:warped_stem", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:warped_stem[axis=z]": { + "bedrock_identifier": "minecraft:warped_stem", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_warped_stem[axis=x]": { + "bedrock_identifier": "minecraft:stripped_warped_stem", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_warped_stem[axis=y]": { + "bedrock_identifier": "minecraft:stripped_warped_stem", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_warped_stem[axis=z]": { + "bedrock_identifier": "minecraft:stripped_warped_stem", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:warped_hyphae[axis=x]": { + "bedrock_identifier": "minecraft:warped_hyphae", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:warped_hyphae[axis=y]": { + "bedrock_identifier": "minecraft:warped_hyphae", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:warped_hyphae[axis=z]": { + "bedrock_identifier": "minecraft:warped_hyphae", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_warped_hyphae[axis=x]": { + "bedrock_identifier": "minecraft:stripped_warped_hyphae", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_warped_hyphae[axis=y]": { + "bedrock_identifier": "minecraft:stripped_warped_hyphae", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_warped_hyphae[axis=z]": { + "bedrock_identifier": "minecraft:stripped_warped_hyphae", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:warped_nylium": { + "bedrock_identifier": "minecraft:warped_nylium", + "block_hardness": 0.4, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:warped_fungus": { + "bedrock_identifier": "minecraft:warped_fungus", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true + }, + "minecraft:warped_wart_block": { + "bedrock_identifier": "minecraft:warped_wart_block", + "block_hardness": 1.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:warped_roots": { + "bedrock_identifier": "minecraft:warped_roots", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true + }, + "minecraft:nether_sprouts": { + "bedrock_identifier": "minecraft:nether_sprouts", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:crimson_stem[axis=x]": { + "bedrock_identifier": "minecraft:crimson_stem", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:crimson_stem[axis=y]": { + "bedrock_identifier": "minecraft:crimson_stem", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:crimson_stem[axis=z]": { + "bedrock_identifier": "minecraft:crimson_stem", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_crimson_stem[axis=x]": { + "bedrock_identifier": "minecraft:stripped_crimson_stem", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_crimson_stem[axis=y]": { + "bedrock_identifier": "minecraft:stripped_crimson_stem", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_crimson_stem[axis=z]": { + "bedrock_identifier": "minecraft:stripped_crimson_stem", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:crimson_hyphae[axis=x]": { + "bedrock_identifier": "minecraft:crimson_hyphae", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:crimson_hyphae[axis=y]": { + "bedrock_identifier": "minecraft:crimson_hyphae", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:crimson_hyphae[axis=z]": { + "bedrock_identifier": "minecraft:crimson_hyphae", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:stripped_crimson_hyphae[axis=x]": { + "bedrock_identifier": "minecraft:stripped_crimson_hyphae", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:stripped_crimson_hyphae[axis=y]": { + "bedrock_identifier": "minecraft:stripped_crimson_hyphae", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:stripped_crimson_hyphae[axis=z]": { + "bedrock_identifier": "minecraft:stripped_crimson_hyphae", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:crimson_nylium": { + "bedrock_identifier": "minecraft:crimson_nylium", + "block_hardness": 0.4, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:crimson_fungus": { + "bedrock_identifier": "minecraft:crimson_fungus", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true + }, + "minecraft:shroomlight": { + "bedrock_identifier": "minecraft:shroomlight", + "block_hardness": 1.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:weeping_vines[age=0]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 0 + } + }, + "minecraft:weeping_vines[age=1]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 1 + } + }, + "minecraft:weeping_vines[age=2]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 2 + } + }, + "minecraft:weeping_vines[age=3]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 3 + } + }, + "minecraft:weeping_vines[age=4]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 4 + } + }, + "minecraft:weeping_vines[age=5]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 5 + } + }, + "minecraft:weeping_vines[age=6]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 6 + } + }, + "minecraft:weeping_vines[age=7]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 7 + } + }, + "minecraft:weeping_vines[age=8]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 8 + } + }, + "minecraft:weeping_vines[age=9]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 9 + } + }, + "minecraft:weeping_vines[age=10]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 10 + } + }, + "minecraft:weeping_vines[age=11]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 11 + } + }, + "minecraft:weeping_vines[age=12]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 12 + } + }, + "minecraft:weeping_vines[age=13]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 13 + } + }, + "minecraft:weeping_vines[age=14]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 14 + } + }, + "minecraft:weeping_vines[age=15]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 15 + } + }, + "minecraft:weeping_vines[age=16]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 16 + } + }, + "minecraft:weeping_vines[age=17]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 17 + } + }, + "minecraft:weeping_vines[age=18]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 18 + } + }, + "minecraft:weeping_vines[age=19]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 19 + } + }, + "minecraft:weeping_vines[age=20]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 20 + } + }, + "minecraft:weeping_vines[age=21]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 21 + } + }, + "minecraft:weeping_vines[age=22]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 22 + } + }, + "minecraft:weeping_vines[age=23]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 23 + } + }, + "minecraft:weeping_vines[age=24]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 24 + } + }, + "minecraft:weeping_vines[age=25]": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 25 + } + }, + "minecraft:weeping_vines_plant": { + "bedrock_identifier": "minecraft:weeping_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:weeping_vines", + "can_break_with_hand": true, + "bedrock_states": { + "weeping_vines_age": 0 + } + }, + "minecraft:twisting_vines[age=0]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 0 + } + }, + "minecraft:twisting_vines[age=1]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 1 + } + }, + "minecraft:twisting_vines[age=2]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 2 + } + }, + "minecraft:twisting_vines[age=3]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 3 + } + }, + "minecraft:twisting_vines[age=4]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 4 + } + }, + "minecraft:twisting_vines[age=5]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 5 + } + }, + "minecraft:twisting_vines[age=6]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 6 + } + }, + "minecraft:twisting_vines[age=7]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 7 + } + }, + "minecraft:twisting_vines[age=8]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 8 + } + }, + "minecraft:twisting_vines[age=9]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 9 + } + }, + "minecraft:twisting_vines[age=10]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 10 + } + }, + "minecraft:twisting_vines[age=11]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 11 + } + }, + "minecraft:twisting_vines[age=12]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 12 + } + }, + "minecraft:twisting_vines[age=13]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 13 + } + }, + "minecraft:twisting_vines[age=14]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 14 + } + }, + "minecraft:twisting_vines[age=15]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 15 + } + }, + "minecraft:twisting_vines[age=16]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 16 + } + }, + "minecraft:twisting_vines[age=17]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 17 + } + }, + "minecraft:twisting_vines[age=18]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 18 + } + }, + "minecraft:twisting_vines[age=19]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 19 + } + }, + "minecraft:twisting_vines[age=20]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 20 + } + }, + "minecraft:twisting_vines[age=21]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 21 + } + }, + "minecraft:twisting_vines[age=22]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 22 + } + }, + "minecraft:twisting_vines[age=23]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 23 + } + }, + "minecraft:twisting_vines[age=24]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 24 + } + }, + "minecraft:twisting_vines[age=25]": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 25 + } + }, + "minecraft:twisting_vines_plant": { + "bedrock_identifier": "minecraft:twisting_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:twisting_vines", + "can_break_with_hand": true, + "bedrock_states": { + "twisting_vines_age": 0 + } + }, + "minecraft:crimson_roots": { + "bedrock_identifier": "minecraft:crimson_roots", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true + }, + "minecraft:crimson_planks": { + "bedrock_identifier": "minecraft:crimson_planks", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:warped_planks": { + "bedrock_identifier": "minecraft:warped_planks", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:crimson_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:crimson_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:crimson_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:crimson_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:crimson_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:crimson_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:warped_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:warped_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:warped_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:warped_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:warped_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:warped_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:crimson_pressure_plate[powered=true]": { + "bedrock_identifier": "minecraft:crimson_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:crimson_pressure_plate[powered=false]": { + "bedrock_identifier": "minecraft:crimson_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:warped_pressure_plate[powered=true]": { + "bedrock_identifier": "minecraft:warped_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:warped_pressure_plate[powered=false]": { + "bedrock_identifier": "minecraft:warped_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:crimson_fence[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:crimson_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 67, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 68, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 69, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 70, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 71, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 72, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=true,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 74, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=true,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 75, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=true,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=true,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 77, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=true,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 78, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=false,south=true,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 79, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=false,south=true,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 80, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=false,south=false,waterlogged=true,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=true]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 81, + "can_break_with_hand": true + }, + "minecraft:warped_fence[east=false,north=false,south=false,waterlogged=false,west=false]": { + "bedrock_identifier": "minecraft:warped_fence", + "block_hardness": 2.0, + "collision_index": 82, + "can_break_with_hand": true + }, + "minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 3 + } + }, + "minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 2 + } + }, + "minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 1 + } + }, + "minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": true, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:warped_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "upside_down_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_fence_gate[facing=north,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_fence_gate[facing=north,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_fence_gate[facing=north,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_fence_gate[facing=north,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_fence_gate[facing=north,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_fence_gate[facing=south,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_fence_gate[facing=south,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_fence_gate[facing=south,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_fence_gate[facing=south,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_fence_gate[facing=west,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_fence_gate[facing=west,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_fence_gate[facing=west,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_fence_gate[facing=west,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_fence_gate[facing=east,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_fence_gate[facing=east,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_fence_gate[facing=east,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_fence_gate[facing=east,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 3 + } + }, + "minecraft:warped_fence_gate[facing=north,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 2 + } + }, + "minecraft:warped_fence_gate[facing=north,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 2 + } + }, + "minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 2 + } + }, + "minecraft:warped_fence_gate[facing=north,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 2 + } + }, + "minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 2 + } + }, + "minecraft:warped_fence_gate[facing=north,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 2 + } + }, + "minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 2 + } + }, + "minecraft:warped_fence_gate[facing=north,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 2 + } + }, + "minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 0 + } + }, + "minecraft:warped_fence_gate[facing=south,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 0 + } + }, + "minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 0 + } + }, + "minecraft:warped_fence_gate[facing=south,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 0 + } + }, + "minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 0 + } + }, + "minecraft:warped_fence_gate[facing=south,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 0 + } + }, + "minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 0 + } + }, + "minecraft:warped_fence_gate[facing=south,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 73, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 0 + } + }, + "minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 1 + } + }, + "minecraft:warped_fence_gate[facing=west,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 1 + } + }, + "minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 1 + } + }, + "minecraft:warped_fence_gate[facing=west,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 1 + } + }, + "minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 1 + } + }, + "minecraft:warped_fence_gate[facing=west,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 1 + } + }, + "minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 1 + } + }, + "minecraft:warped_fence_gate[facing=west,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 1 + } + }, + "minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 3 + } + }, + "minecraft:warped_fence_gate[facing=east,in_wall=true,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": true, + "direction": 3 + } + }, + "minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 3 + } + }, + "minecraft:warped_fence_gate[facing=east,in_wall=true,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": true, + "open_bit": false, + "direction": 3 + } + }, + "minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 3 + } + }, + "minecraft:warped_fence_gate[facing=east,in_wall=false,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": true, + "direction": 3 + } + }, + "minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 3 + } + }, + "minecraft:warped_fence_gate[facing=east,in_wall=false,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_fence_gate", + "block_hardness": 2.0, + "collision_index": 76, + "can_break_with_hand": true, + "bedrock_states": { + "in_wall_bit": false, + "open_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:crimson_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:warped_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": true, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:crimson_button[face=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_button[face=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:crimson_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:warped_button[face=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_button[face=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:warped_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:crimson_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:crimson_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:crimson_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:crimson_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:crimson_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:warped_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:warped_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 3 + } + }, + "minecraft:warped_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:warped_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 1 + } + }, + "minecraft:warped_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:warped_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 2 + } + }, + "minecraft:warped_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": true, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": false, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": true, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:warped_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:warped_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "open_bit": false, + "door_hinge_bit": true, + "upper_block_bit": false, + "direction": 0 + } + }, + "minecraft:crimson_sign[rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_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:crimson_sign[rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_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:warped_sign[rotation=0,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=0,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=1,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=1,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=2,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=2,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=3,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=3,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=4,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=4,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=5,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=5,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=6,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=6,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=7,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=7,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=8,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=8,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=9,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=9,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=10,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=10,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=11,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=11,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=12,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=12,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=13,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=13,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=14,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=14,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=15,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_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:warped_sign[rotation=15,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_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:crimson_wall_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:crimson_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:crimson_wall_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:crimson_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:crimson_wall_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:crimson_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:crimson_wall_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:crimson_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:crimson_wall_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:crimson_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:crimson_wall_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:crimson_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:crimson_wall_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:crimson_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:crimson_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:crimson_wall_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:crimson_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:crimson_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:warped_wall_sign[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:warped_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:warped_wall_sign[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:warped_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:warped_wall_sign[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:warped_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:warped_wall_sign[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:warped_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:warped_wall_sign[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:warped_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:warped_wall_sign[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:warped_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:warped_wall_sign[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:warped_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:warped_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:warped_wall_sign[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:warped_wall_sign", + "block_hardness": 1.0, + "collision_index": 0, + "has_block_entity": true, + "pick_item": "minecraft:warped_sign", + "can_break_with_hand": true, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:structure_block[mode=save]": { + "bedrock_identifier": "minecraft:structure_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "structure_block_type": "save" + } + }, + "minecraft:structure_block[mode=load]": { + "bedrock_identifier": "minecraft:structure_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "structure_block_type": "load" + } + }, + "minecraft:structure_block[mode=corner]": { + "bedrock_identifier": "minecraft:structure_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "structure_block_type": "corner" + } + }, + "minecraft:structure_block[mode=data]": { + "bedrock_identifier": "minecraft:structure_block", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "structure_block_type": "data" + } + }, + "minecraft:jigsaw[orientation=down_east]": { + "bedrock_identifier": "minecraft:jigsaw", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "rotation": 0 + } + }, + "minecraft:jigsaw[orientation=down_north]": { + "bedrock_identifier": "minecraft:jigsaw", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "rotation": 0 + } + }, + "minecraft:jigsaw[orientation=down_south]": { + "bedrock_identifier": "minecraft:jigsaw", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "rotation": 0 + } + }, + "minecraft:jigsaw[orientation=down_west]": { + "bedrock_identifier": "minecraft:jigsaw", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "rotation": 0 + } + }, + "minecraft:jigsaw[orientation=up_east]": { + "bedrock_identifier": "minecraft:jigsaw", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "rotation": 0 + } + }, + "minecraft:jigsaw[orientation=up_north]": { + "bedrock_identifier": "minecraft:jigsaw", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "rotation": 0 + } + }, + "minecraft:jigsaw[orientation=up_south]": { + "bedrock_identifier": "minecraft:jigsaw", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "rotation": 0 + } + }, + "minecraft:jigsaw[orientation=up_west]": { + "bedrock_identifier": "minecraft:jigsaw", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "rotation": 0 + } + }, + "minecraft:jigsaw[orientation=west_up]": { + "bedrock_identifier": "minecraft:jigsaw", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "rotation": 0 + } + }, + "minecraft:jigsaw[orientation=east_up]": { + "bedrock_identifier": "minecraft:jigsaw", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "rotation": 0 + } + }, + "minecraft:jigsaw[orientation=north_up]": { + "bedrock_identifier": "minecraft:jigsaw", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "rotation": 0 + } + }, + "minecraft:jigsaw[orientation=south_up]": { + "bedrock_identifier": "minecraft:jigsaw", + "block_hardness": -1.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0, + "rotation": 0 + } + }, + "minecraft:composter[level=0]": { + "bedrock_identifier": "minecraft:composter", + "block_hardness": 0.6, + "collision_index": 281, + "can_break_with_hand": true, + "bedrock_states": { + "composter_fill_level": 0 + } + }, + "minecraft:composter[level=1]": { + "bedrock_identifier": "minecraft:composter", + "block_hardness": 0.6, + "collision_index": 281, + "can_break_with_hand": true, + "bedrock_states": { + "composter_fill_level": 1 + } + }, + "minecraft:composter[level=2]": { + "bedrock_identifier": "minecraft:composter", + "block_hardness": 0.6, + "collision_index": 281, + "can_break_with_hand": true, + "bedrock_states": { + "composter_fill_level": 2 + } + }, + "minecraft:composter[level=3]": { + "bedrock_identifier": "minecraft:composter", + "block_hardness": 0.6, + "collision_index": 281, + "can_break_with_hand": true, + "bedrock_states": { + "composter_fill_level": 3 + } + }, + "minecraft:composter[level=4]": { + "bedrock_identifier": "minecraft:composter", + "block_hardness": 0.6, + "collision_index": 281, + "can_break_with_hand": true, + "bedrock_states": { + "composter_fill_level": 4 + } + }, + "minecraft:composter[level=5]": { + "bedrock_identifier": "minecraft:composter", + "block_hardness": 0.6, + "collision_index": 281, + "can_break_with_hand": true, + "bedrock_states": { + "composter_fill_level": 5 + } + }, + "minecraft:composter[level=6]": { + "bedrock_identifier": "minecraft:composter", + "block_hardness": 0.6, + "collision_index": 281, + "can_break_with_hand": true, + "bedrock_states": { + "composter_fill_level": 6 + } + }, + "minecraft:composter[level=7]": { + "bedrock_identifier": "minecraft:composter", + "block_hardness": 0.6, + "collision_index": 281, + "can_break_with_hand": true, + "bedrock_states": { + "composter_fill_level": 7 + } + }, + "minecraft:composter[level=8]": { + "bedrock_identifier": "minecraft:composter", + "block_hardness": 0.6, + "collision_index": 281, + "can_break_with_hand": true, + "bedrock_states": { + "composter_fill_level": 8 + } + }, + "minecraft:target[power=0]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=1]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=2]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=3]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=4]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=5]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=6]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=7]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=8]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=9]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=10]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=11]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=12]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=13]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=14]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:target[power=15]": { + "bedrock_identifier": "minecraft:target", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:bee_nest[facing=north,honey_level=0]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 0, + "direction": 2 + } + }, + "minecraft:bee_nest[facing=north,honey_level=1]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 1, + "direction": 2 + } + }, + "minecraft:bee_nest[facing=north,honey_level=2]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 2, + "direction": 2 + } + }, + "minecraft:bee_nest[facing=north,honey_level=3]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 3, + "direction": 2 + } + }, + "minecraft:bee_nest[facing=north,honey_level=4]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 4, + "direction": 2 + } + }, + "minecraft:bee_nest[facing=north,honey_level=5]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 5, + "direction": 2 + } + }, + "minecraft:bee_nest[facing=south,honey_level=0]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 0, + "direction": 0 + } + }, + "minecraft:bee_nest[facing=south,honey_level=1]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 1, + "direction": 0 + } + }, + "minecraft:bee_nest[facing=south,honey_level=2]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 2, + "direction": 0 + } + }, + "minecraft:bee_nest[facing=south,honey_level=3]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 3, + "direction": 0 + } + }, + "minecraft:bee_nest[facing=south,honey_level=4]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 4, + "direction": 0 + } + }, + "minecraft:bee_nest[facing=south,honey_level=5]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 5, + "direction": 0 + } + }, + "minecraft:bee_nest[facing=west,honey_level=0]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 0, + "direction": 1 + } + }, + "minecraft:bee_nest[facing=west,honey_level=1]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 1, + "direction": 1 + } + }, + "minecraft:bee_nest[facing=west,honey_level=2]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 2, + "direction": 1 + } + }, + "minecraft:bee_nest[facing=west,honey_level=3]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 3, + "direction": 1 + } + }, + "minecraft:bee_nest[facing=west,honey_level=4]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 4, + "direction": 1 + } + }, + "minecraft:bee_nest[facing=west,honey_level=5]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 5, + "direction": 1 + } + }, + "minecraft:bee_nest[facing=east,honey_level=0]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 0, + "direction": 3 + } + }, + "minecraft:bee_nest[facing=east,honey_level=1]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 1, + "direction": 3 + } + }, + "minecraft:bee_nest[facing=east,honey_level=2]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 2, + "direction": 3 + } + }, + "minecraft:bee_nest[facing=east,honey_level=3]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 3, + "direction": 3 + } + }, + "minecraft:bee_nest[facing=east,honey_level=4]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 4, + "direction": 3 + } + }, + "minecraft:bee_nest[facing=east,honey_level=5]": { + "bedrock_identifier": "minecraft:bee_nest", + "block_hardness": 0.3, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 5, + "direction": 3 + } + }, + "minecraft:beehive[facing=north,honey_level=0]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 0, + "direction": 2 + } + }, + "minecraft:beehive[facing=north,honey_level=1]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 1, + "direction": 2 + } + }, + "minecraft:beehive[facing=north,honey_level=2]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 2, + "direction": 2 + } + }, + "minecraft:beehive[facing=north,honey_level=3]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 3, + "direction": 2 + } + }, + "minecraft:beehive[facing=north,honey_level=4]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 4, + "direction": 2 + } + }, + "minecraft:beehive[facing=north,honey_level=5]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 5, + "direction": 2 + } + }, + "minecraft:beehive[facing=south,honey_level=0]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 0, + "direction": 0 + } + }, + "minecraft:beehive[facing=south,honey_level=1]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 1, + "direction": 0 + } + }, + "minecraft:beehive[facing=south,honey_level=2]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 2, + "direction": 0 + } + }, + "minecraft:beehive[facing=south,honey_level=3]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 3, + "direction": 0 + } + }, + "minecraft:beehive[facing=south,honey_level=4]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 4, + "direction": 0 + } + }, + "minecraft:beehive[facing=south,honey_level=5]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 5, + "direction": 0 + } + }, + "minecraft:beehive[facing=west,honey_level=0]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 0, + "direction": 1 + } + }, + "minecraft:beehive[facing=west,honey_level=1]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 1, + "direction": 1 + } + }, + "minecraft:beehive[facing=west,honey_level=2]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 2, + "direction": 1 + } + }, + "minecraft:beehive[facing=west,honey_level=3]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 3, + "direction": 1 + } + }, + "minecraft:beehive[facing=west,honey_level=4]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 4, + "direction": 1 + } + }, + "minecraft:beehive[facing=west,honey_level=5]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 5, + "direction": 1 + } + }, + "minecraft:beehive[facing=east,honey_level=0]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 0, + "direction": 3 + } + }, + "minecraft:beehive[facing=east,honey_level=1]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 1, + "direction": 3 + } + }, + "minecraft:beehive[facing=east,honey_level=2]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 2, + "direction": 3 + } + }, + "minecraft:beehive[facing=east,honey_level=3]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 3, + "direction": 3 + } + }, + "minecraft:beehive[facing=east,honey_level=4]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 4, + "direction": 3 + } + }, + "minecraft:beehive[facing=east,honey_level=5]": { + "bedrock_identifier": "minecraft:beehive", + "block_hardness": 0.6, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "honey_level": 5, + "direction": 3 + } + }, + "minecraft:honey_block": { + "bedrock_identifier": "minecraft:honey_block", + "block_hardness": 0.0, + "collision_index": 66, + "can_break_with_hand": true + }, + "minecraft:honeycomb_block": { + "bedrock_identifier": "minecraft:honeycomb_block", + "block_hardness": 0.6, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:netherite_block": { + "bedrock_identifier": "minecraft:netherite_block", + "block_hardness": 50.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:ancient_debris": { + "bedrock_identifier": "minecraft:ancient_debris", + "block_hardness": 30.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:crying_obsidian": { + "bedrock_identifier": "minecraft:crying_obsidian", + "block_hardness": 50.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:respawn_anchor[charges=0]": { + "bedrock_identifier": "minecraft:respawn_anchor", + "block_hardness": 50.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "respawn_anchor_charge": 0 + } + }, + "minecraft:respawn_anchor[charges=1]": { + "bedrock_identifier": "minecraft:respawn_anchor", + "block_hardness": 50.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "respawn_anchor_charge": 1 + } + }, + "minecraft:respawn_anchor[charges=2]": { + "bedrock_identifier": "minecraft:respawn_anchor", + "block_hardness": 50.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "respawn_anchor_charge": 2 + } + }, + "minecraft:respawn_anchor[charges=3]": { + "bedrock_identifier": "minecraft:respawn_anchor", + "block_hardness": 50.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "respawn_anchor_charge": 3 + } + }, + "minecraft:respawn_anchor[charges=4]": { + "bedrock_identifier": "minecraft:respawn_anchor", + "block_hardness": 50.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "respawn_anchor_charge": 4 + } + }, + "minecraft:potted_crimson_fungus": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:crimson_fungus", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_warped_fungus": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:warped_fungus", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_crimson_roots": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:crimson_roots", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_warped_roots": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:warped_roots", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:lodestone": { + "bedrock_identifier": "minecraft:lodestone", + "block_hardness": 3.5, + "collision_index": 1, + "piston_behavior": "block", + "can_break_with_hand": false + }, + "minecraft:blackstone": { + "bedrock_identifier": "minecraft:blackstone", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 129, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 129, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 144, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 144, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 144, + "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": "none" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 145, + "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": "none" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 145, + "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": "none" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 144, + "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": "none" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 145, + "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": "none" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 145, + "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": "none" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 146, + "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": "none" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "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": "none" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "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": "none" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 146, + "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": "none" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "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": "none" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 147, + "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": "none" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 148, + "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": "none" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 148, + "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": "none" + } + }, + "minecraft:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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:blackstone_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "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:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "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:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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:blackstone_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 148, + "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:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 148, + "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:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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:blackstone_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "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:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 150, + "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:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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:blackstone_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "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:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "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:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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:blackstone_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "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:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "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:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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:blackstone_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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:blackstone_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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:blackstone_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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:blackstone_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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:blackstone_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "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:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 152, + "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:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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:blackstone_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "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:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 154, + "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:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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:blackstone_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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:blackstone_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:blackstone_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:blackstone_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:blackstone_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:blackstone_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:blackstone_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:blackstone_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:blackstone_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:blackstone_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:blackstone_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:blackstone_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_blackstone": { + "bedrock_identifier": "minecraft:polished_blackstone", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:polished_blackstone_bricks": { + "bedrock_identifier": "minecraft:polished_blackstone_bricks", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:cracked_polished_blackstone_bricks": { + "bedrock_identifier": "minecraft:cracked_polished_blackstone_bricks", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:chiseled_polished_blackstone": { + "bedrock_identifier": "minecraft:chiseled_polished_blackstone", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:polished_blackstone_brick_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:polished_blackstone_brick_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_blackstone_brick_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_blackstone_brick_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_blackstone_brick_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 129, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 129, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 144, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 144, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 146, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 147, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 148, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 152, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 154, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 144, + "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": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 145, + "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": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 145, + "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": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 144, + "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": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 145, + "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": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 145, + "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": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 146, + "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": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 147, + "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": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 147, + "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": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 146, + "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": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 147, + "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": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 147, + "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": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 148, + "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": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 148, + "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": "none" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 150, + "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_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 150, + "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_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 148, + "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_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 148, + "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_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 149, + "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_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 150, + "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_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 150, + "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_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 151, + "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_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 152, + "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_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 152, + "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_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 154, + "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_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 154, + "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_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 152, + "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_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 152, + "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_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 153, + "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_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 154, + "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_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 154, + "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_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 155, + "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_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 156, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 157, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:polished_blackstone_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "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": "tall" + } + }, + "minecraft:gilded_blackstone": { + "bedrock_identifier": "minecraft:gilded_blackstone", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_stairs", + "block_hardness": 2.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_blackstone_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:polished_blackstone_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_slab", + "block_hardness": 2.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:polished_blackstone_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_blackstone_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_slab", + "block_hardness": 2.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_blackstone_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_blackstone_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_double_slab", + "block_hardness": 2.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_blackstone_pressure_plate[powered=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 15 + } + }, + "minecraft:polished_blackstone_pressure_plate[powered=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_pressure_plate", + "block_hardness": 0.5, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "redstone_signal": 0 + } + }, + "minecraft:polished_blackstone_button[face=floor,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=floor,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=floor,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=floor,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=floor,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=floor,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=floor,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=floor,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=wall,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=wall,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=wall,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=wall,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=wall,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=wall,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=wall,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=wall,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=ceiling,facing=north,powered=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=ceiling,facing=north,powered=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=ceiling,facing=south,powered=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=ceiling,facing=south,powered=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=ceiling,facing=west,powered=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=ceiling,facing=west,powered=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=ceiling,facing=east,powered=true]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_button[face=ceiling,facing=east,powered=false]": { + "bedrock_identifier": "minecraft:polished_blackstone_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:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 129, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 129, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 130, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 0, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 131, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 132, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 133, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 136, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 137, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 138, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 139, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 140, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 141, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 144, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 144, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=low,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=none,south=tall,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "short" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=none,up=false,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": "short", + "wall_post_bit": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "short", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=true,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": "short", + "wall_post_bit": true, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "none", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "short", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_post_bit": false, + "wall_connection_type_south": "tall", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "tall" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 144, + "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": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "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": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "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": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 144, + "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": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "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": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 145, + "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": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,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": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,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": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,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": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,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": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "none", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,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": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "short", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=none,up=false,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": false, + "wall_connection_type_south": "none", + "wall_connection_type_west": "tall", + "wall_connection_type_north": "none" + } + }, + "minecraft:polished_blackstone_wall[east=tall,north=none,south=low,up=true,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": true, + "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=true,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": 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=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": 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=true,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": true, + "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=true,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": 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": 149, + "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": 150, + "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": 151, + "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": 151, + "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": 150, + "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": 151, + "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": 151, + "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": 148, + "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": 149, + "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": 149, + "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": 148, + "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": 149, + "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": 149, + "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": 150, + "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": 151, + "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": 151, + "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": 150, + "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": 151, + "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": 151, + "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": 152, + "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": 153, + "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": 153, + "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": 152, + "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": 153, + "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": 153, + "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": 154, + "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": 155, + "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": 155, + "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": 154, + "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": 155, + "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": 155, + "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": 156, + "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": 157, + "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": 157, + "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": 156, + "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": 157, + "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": 157, + "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": 158, + "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": 159, + "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": 159, + "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": 158, + "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": 159, + "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": 159, + "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": 156, + "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": 157, + "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": 157, + "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": 156, + "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": 157, + "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": 157, + "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": 158, + "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": 159, + "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": 159, + "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": 158, + "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": 159, + "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": 159, + "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": 152, + "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": 153, + "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": 153, + "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": 152, + "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": 153, + "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": 153, + "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": 154, + "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": 155, + "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": 155, + "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": 154, + "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": 155, + "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": 155, + "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": 156, + "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": 157, + "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": 157, + "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": 156, + "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": 157, + "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=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": 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=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_blackstone_wall", + "block_hardness": 2.0, + "collision_index": 158, + "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": "tall" + } + }, + "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": 159, + "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": "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": 159, + "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": "tall" + } + }, + "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": 158, + "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": "tall" + } + }, + "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": 159, + "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": "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": 159, + "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": "tall" + } + }, + "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": 156, + "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": "tall" + } + }, + "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": 157, + "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": "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": 157, + "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": "tall" + } + }, + "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": 156, + "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": "tall" + } + }, + "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": 157, + "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": "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": 157, + "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": "tall" + } + }, + "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": 158, + "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": "tall" + } + }, + "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": 159, + "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": "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": 159, + "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": "tall" + } + }, + "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": 158, + "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": "tall" + } + }, + "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": 159, + "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": "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": 159, + "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": "tall" + } + }, + "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:candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:white_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:white_candle", + "block_hardness": 0.1, + "collision_index": 282, + "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": 282, + "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": 282, + "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": 282, + "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": 283, + "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": 283, + "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": 283, + "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": 283, + "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": 284, + "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": 284, + "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": 284, + "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": 284, + "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": 285, + "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": 285, + "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": 285, + "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": 285, + "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": 282, + "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": 282, + "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": 282, + "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": 282, + "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": 283, + "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": 283, + "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": 283, + "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": 283, + "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": 284, + "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": 284, + "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": 284, + "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": 284, + "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": 285, + "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": 285, + "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": 285, + "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": 285, + "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": 282, + "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": 282, + "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": 282, + "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": 282, + "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": 283, + "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": 283, + "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": 283, + "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": 283, + "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": 284, + "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": 284, + "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": 284, + "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": 284, + "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": 285, + "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": 285, + "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": 285, + "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": 285, + "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": 282, + "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": 282, + "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": 282, + "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": 282, + "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": 283, + "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": 283, + "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": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:light_blue_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:light_blue_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:light_blue_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:light_blue_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:light_blue_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:light_blue_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:light_blue_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:light_blue_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:light_blue_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_blue_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:yellow_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:yellow_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:yellow_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:yellow_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:yellow_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:yellow_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:yellow_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:yellow_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:yellow_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:yellow_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:yellow_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:yellow_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:yellow_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:yellow_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:yellow_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:yellow_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:yellow_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:lime_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:lime_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:lime_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:lime_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:lime_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:lime_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:lime_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:lime_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:lime_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:lime_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:lime_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:lime_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:lime_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:lime_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:lime_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:lime_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lime_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:pink_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:pink_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:pink_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:pink_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:pink_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:pink_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:pink_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:pink_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:pink_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:pink_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:pink_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:pink_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:pink_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:pink_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:pink_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:pink_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:pink_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:gray_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:gray_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:gray_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:gray_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:gray_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:gray_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:gray_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:gray_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:gray_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:gray_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:gray_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:gray_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:gray_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:gray_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:gray_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:gray_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:gray_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:light_gray_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_gray_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "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": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:light_gray_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_gray_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:light_gray_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_gray_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "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": 283, + "piston_behavior": "destroy", + "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": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:light_gray_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_gray_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:light_gray_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_gray_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "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": 284, + "piston_behavior": "destroy", + "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": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:light_gray_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:light_gray_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:light_gray_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:light_gray_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "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": 285, + "piston_behavior": "destroy", + "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": 285, + "piston_behavior": "destroy", + "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": 285, + "piston_behavior": "destroy", + "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": 285, + "piston_behavior": "destroy", + "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": 282, + "piston_behavior": "destroy", + "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": 282, + "piston_behavior": "destroy", + "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": 282, + "piston_behavior": "destroy", + "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": 282, + "piston_behavior": "destroy", + "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": 283, + "piston_behavior": "destroy", + "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": 283, + "piston_behavior": "destroy", + "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": 283, + "piston_behavior": "destroy", + "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": 283, + "piston_behavior": "destroy", + "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": 284, + "piston_behavior": "destroy", + "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": 284, + "piston_behavior": "destroy", + "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": 284, + "piston_behavior": "destroy", + "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": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:cyan_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:cyan_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:cyan_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:cyan_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:cyan_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:cyan_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:cyan_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:cyan_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:purple_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:purple_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:purple_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:purple_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:purple_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:purple_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:purple_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:purple_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:purple_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:purple_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:purple_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:purple_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:purple_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:purple_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:purple_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:purple_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:purple_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:blue_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:blue_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:blue_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:blue_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:blue_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:blue_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:blue_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:blue_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:blue_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:blue_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:blue_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:blue_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:blue_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:blue_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:blue_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:blue_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:blue_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:brown_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:brown_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:brown_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:brown_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:brown_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:brown_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:brown_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:brown_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:brown_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:brown_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:brown_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:brown_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:brown_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:brown_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:brown_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:brown_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:brown_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:green_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:green_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:green_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:green_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:green_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:green_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:green_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:green_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:green_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:green_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:green_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:green_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:green_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:green_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:green_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:green_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:green_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:red_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:red_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:red_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:red_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:red_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:red_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:red_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:red_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:red_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:red_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:red_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:red_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:red_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:red_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:red_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:red_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:red_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:black_candle[candles=1,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:black_candle[candles=1,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": true + } + }, + "minecraft:black_candle[candles=1,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:black_candle[candles=1,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 282, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 0, + "lit": false + } + }, + "minecraft:black_candle[candles=2,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:black_candle[candles=2,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": true + } + }, + "minecraft:black_candle[candles=2,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:black_candle[candles=2,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 283, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 1, + "lit": false + } + }, + "minecraft:black_candle[candles=3,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:black_candle[candles=3,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": true + } + }, + "minecraft:black_candle[candles=3,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:black_candle[candles=3,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 284, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 2, + "lit": false + } + }, + "minecraft:black_candle[candles=4,lit=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:black_candle[candles=4,lit=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": true + } + }, + "minecraft:black_candle[candles=4,lit=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:black_candle[candles=4,lit=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:black_candle", + "block_hardness": 0.1, + "collision_index": 285, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "candles": 3, + "lit": false + } + }, + "minecraft:candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:white_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:white_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:white_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:white_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:orange_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:orange_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:orange_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:orange_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:magenta_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:magenta_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:magenta_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:magenta_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:light_blue_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:light_blue_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:light_blue_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:light_blue_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:yellow_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:yellow_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:yellow_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:yellow_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:lime_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:lime_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:lime_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:lime_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "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": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:pink_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:pink_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:gray_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:gray_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "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": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:light_gray_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:light_gray_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:light_gray_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:light_gray_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "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": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:cyan_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:cyan_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:purple_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:purple_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "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": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:blue_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:blue_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:blue_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:blue_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "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": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:brown_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:brown_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:green_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:green_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "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": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "minecraft:red_candle_cake[lit=true]": { + "bedrock_identifier": "minecraft:red_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:red_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:red_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "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": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": true + } + }, + "minecraft:black_candle_cake[lit=false]": { + "bedrock_identifier": "minecraft:black_candle_cake", + "block_hardness": 0.5, + "collision_index": 286, + "piston_behavior": "destroy", + "pick_item": "minecraft:cake", + "can_break_with_hand": true, + "bedrock_states": { + "lit": false + } + }, + "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": 287, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "north" + } + }, + "minecraft:amethyst_cluster[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 287, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "north" + } + }, + "minecraft:amethyst_cluster[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 288, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "east" + } + }, + "minecraft:amethyst_cluster[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 288, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "east" + } + }, + "minecraft:amethyst_cluster[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 289, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "south" + } + }, + "minecraft:amethyst_cluster[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 289, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "south" + } + }, + "minecraft:amethyst_cluster[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 290, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "west" + } + }, + "minecraft:amethyst_cluster[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 290, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "west" + } + }, + "minecraft:amethyst_cluster[facing=up,waterlogged=true]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 291, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "up" + } + }, + "minecraft:amethyst_cluster[facing=up,waterlogged=false]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 291, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "up" + } + }, + "minecraft:amethyst_cluster[facing=down,waterlogged=true]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 292, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "down" + } + }, + "minecraft:amethyst_cluster[facing=down,waterlogged=false]": { + "bedrock_identifier": "minecraft:amethyst_cluster", + "block_hardness": 1.5, + "collision_index": 292, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "down" + } + }, + "minecraft:large_amethyst_bud[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 293, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "north" + } + }, + "minecraft:large_amethyst_bud[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 293, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "north" + } + }, + "minecraft:large_amethyst_bud[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 294, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "east" + } + }, + "minecraft:large_amethyst_bud[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 294, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "east" + } + }, + "minecraft:large_amethyst_bud[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 295, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "south" + } + }, + "minecraft:large_amethyst_bud[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 295, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "south" + } + }, + "minecraft:large_amethyst_bud[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 296, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "west" + } + }, + "minecraft:large_amethyst_bud[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 296, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "west" + } + }, + "minecraft:large_amethyst_bud[facing=up,waterlogged=true]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 297, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "up" + } + }, + "minecraft:large_amethyst_bud[facing=up,waterlogged=false]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 297, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "up" + } + }, + "minecraft:large_amethyst_bud[facing=down,waterlogged=true]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 298, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "down" + } + }, + "minecraft:large_amethyst_bud[facing=down,waterlogged=false]": { + "bedrock_identifier": "minecraft:large_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 298, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "down" + } + }, + "minecraft:medium_amethyst_bud[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 299, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "north" + } + }, + "minecraft:medium_amethyst_bud[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 299, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "north" + } + }, + "minecraft:medium_amethyst_bud[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 300, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "east" + } + }, + "minecraft:medium_amethyst_bud[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 300, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "east" + } + }, + "minecraft:medium_amethyst_bud[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 301, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "south" + } + }, + "minecraft:medium_amethyst_bud[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 301, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "south" + } + }, + "minecraft:medium_amethyst_bud[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 302, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "west" + } + }, + "minecraft:medium_amethyst_bud[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 302, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "west" + } + }, + "minecraft:medium_amethyst_bud[facing=up,waterlogged=true]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 303, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "up" + } + }, + "minecraft:medium_amethyst_bud[facing=up,waterlogged=false]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 303, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "up" + } + }, + "minecraft:medium_amethyst_bud[facing=down,waterlogged=true]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 304, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "down" + } + }, + "minecraft:medium_amethyst_bud[facing=down,waterlogged=false]": { + "bedrock_identifier": "minecraft:medium_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 304, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "down" + } + }, + "minecraft:small_amethyst_bud[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 305, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "north" + } + }, + "minecraft:small_amethyst_bud[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 305, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "north" + } + }, + "minecraft:small_amethyst_bud[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 306, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "east" + } + }, + "minecraft:small_amethyst_bud[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 306, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "east" + } + }, + "minecraft:small_amethyst_bud[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 307, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "south" + } + }, + "minecraft:small_amethyst_bud[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 307, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "south" + } + }, + "minecraft:small_amethyst_bud[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 308, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "west" + } + }, + "minecraft:small_amethyst_bud[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 308, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "west" + } + }, + "minecraft:small_amethyst_bud[facing=up,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 309, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "up" + } + }, + "minecraft:small_amethyst_bud[facing=up,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 309, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "up" + } + }, + "minecraft:small_amethyst_bud[facing=down,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 310, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "down" + } + }, + "minecraft:small_amethyst_bud[facing=down,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_amethyst_bud", + "block_hardness": 1.5, + "collision_index": 310, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "minecraft:block_face": "down" + } + }, + "minecraft:tuff": { + "bedrock_identifier": "minecraft:tuff", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:tuff_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_slab", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:tuff_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_slab", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:tuff_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_slab", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:tuff_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_slab", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:tuff_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_double_slab", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:tuff_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_double_slab", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:tuff_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff": { + "bedrock_identifier": "minecraft:polished_tuff", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:polished_tuff_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_slab", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:polished_tuff_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_slab", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:polished_tuff_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_slab", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_tuff_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_slab", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_tuff_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_double_slab", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_tuff_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_double_slab", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_tuff_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_tuff_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_tuff_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:chiseled_tuff": { + "bedrock_identifier": "minecraft:chiseled_tuff", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:tuff_bricks": { + "bedrock_identifier": "minecraft:tuff_bricks", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:tuff_brick_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_slab", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:tuff_brick_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_slab", + "block_hardness": 1.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:tuff_brick_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_slab", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:tuff_brick_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_slab", + "block_hardness": 1.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:tuff_brick_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_double_slab", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:tuff_brick_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_double_slab", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:tuff_brick_stairs", + "block_hardness": 1.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:tuff_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:tuff_brick_wall", + "block_hardness": 1.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:chiseled_tuff_bricks": { + "bedrock_identifier": "minecraft:chiseled_tuff_bricks", + "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": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=0,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=1,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=2,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=3,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=4,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=5,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=6,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=7,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=8,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=9,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=10,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=11,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=12,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=13,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=14,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0 + } + }, + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1 + } + }, + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:sculk_sensor[power=15,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2 + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=0,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=1,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=2,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=3,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=4,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=5,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=6,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=7,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=8,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=9,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=10,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=11,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=12,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=13,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=14,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=north,power=15,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=0,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=1,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=2,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=3,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=4,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=5,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=6,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=7,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=8,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=9,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=10,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=11,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=12,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=13,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=14,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=south,power=15,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=0,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=1,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=2,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=3,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=4,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=5,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=6,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=7,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=8,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=9,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=10,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=11,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=12,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=13,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=14,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=west,power=15,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=0,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=1,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=2,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=3,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=4,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=5,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=6,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=7,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=8,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=9,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=10,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=11,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=12,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=13,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=14,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=inactive,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=inactive,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=active,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=active,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=cooldown,waterlogged=true]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:calibrated_sculk_sensor[facing=east,power=15,sculk_sensor_phase=cooldown,waterlogged=false]": { + "bedrock_identifier": "minecraft:calibrated_sculk_sensor", + "block_hardness": 1.5, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "sculk_sensor_phase": 2, + "minecraft:cardinal_direction": "east" + } + }, + "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": { + "multi_face_direction_bits": 63 + } + }, + "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": { + "multi_face_direction_bits": 55 + } + }, + "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": { + "multi_face_direction_bits": 63 + } + }, + "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": { + "multi_face_direction_bits": 55 + } + }, + "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": { + "multi_face_direction_bits": 61 + } + }, + "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": { + "multi_face_direction_bits": 53 + } + }, + "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": { + "multi_face_direction_bits": 61 + } + }, + "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": { + "multi_face_direction_bits": 53 + } + }, + "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": { + "multi_face_direction_bits": 59 + } + }, + "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": { + "multi_face_direction_bits": 51 + } + }, + "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": { + "multi_face_direction_bits": 59 + } + }, + "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": { + "multi_face_direction_bits": 51 + } + }, + "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": { + "multi_face_direction_bits": 57 + } + }, + "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": { + "multi_face_direction_bits": 49 + } + }, + "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": { + "multi_face_direction_bits": 57 + } + }, + "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": { + "multi_face_direction_bits": 49 + } + }, + "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": { + "multi_face_direction_bits": 47 + } + }, + "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": { + "multi_face_direction_bits": 39 + } + }, + "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": { + "multi_face_direction_bits": 47 + } + }, + "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": { + "multi_face_direction_bits": 39 + } + }, + "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": { + "multi_face_direction_bits": 45 + } + }, + "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": { + "multi_face_direction_bits": 37 + } + }, + "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": { + "multi_face_direction_bits": 45 + } + }, + "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": { + "multi_face_direction_bits": 37 + } + }, + "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": { + "multi_face_direction_bits": 43 + } + }, + "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": { + "multi_face_direction_bits": 35 + } + }, + "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": { + "multi_face_direction_bits": 43 + } + }, + "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": { + "multi_face_direction_bits": 35 + } + }, + "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": { + "multi_face_direction_bits": 41 + } + }, + "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": { + "multi_face_direction_bits": 33 + } + }, + "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": { + "multi_face_direction_bits": 41 + } + }, + "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": { + "multi_face_direction_bits": 33 + } + }, + "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": { + "multi_face_direction_bits": 31 + } + }, + "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": { + "multi_face_direction_bits": 23 + } + }, + "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": { + "multi_face_direction_bits": 31 + } + }, + "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": { + "multi_face_direction_bits": 23 + } + }, + "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": { + "multi_face_direction_bits": 29 + } + }, + "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": { + "multi_face_direction_bits": 21 + } + }, + "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": { + "multi_face_direction_bits": 29 + } + }, + "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": { + "multi_face_direction_bits": 21 + } + }, + "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": { + "multi_face_direction_bits": 27 + } + }, + "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": { + "multi_face_direction_bits": 19 + } + }, + "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, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "multi_face_direction_bits": 27 + } + }, + "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": { + "multi_face_direction_bits": 19 + } + }, + "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": { + "multi_face_direction_bits": 25 + } + }, + "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": { + "multi_face_direction_bits": 17 + } + }, + "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": { + "multi_face_direction_bits": 25 + } + }, + "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": { + "multi_face_direction_bits": 17 + } + }, + "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": { + "multi_face_direction_bits": 15 + } + }, + "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": { + "multi_face_direction_bits": 7 + } + }, + "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": { + "multi_face_direction_bits": 15 + } + }, + "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": { + "multi_face_direction_bits": 7 + } + }, + "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": { + "multi_face_direction_bits": 13 + } + }, + "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": { + "multi_face_direction_bits": 5 + } + }, + "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": { + "multi_face_direction_bits": 13 + } + }, + "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": { + "multi_face_direction_bits": 5 + } + }, + "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": { + "multi_face_direction_bits": 11 + } + }, + "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": { + "multi_face_direction_bits": 3 + } + }, + "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": { + "multi_face_direction_bits": 11 + } + }, + "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": { + "multi_face_direction_bits": 3 + } + }, + "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": { + "multi_face_direction_bits": 9 + } + }, + "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": { + "multi_face_direction_bits": 1 + } + }, + "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": { + "multi_face_direction_bits": 9 + } + }, + "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": { + "multi_face_direction_bits": 1 + } + }, + "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": { + "multi_face_direction_bits": 62 + } + }, + "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": { + "multi_face_direction_bits": 54 + } + }, + "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": { + "multi_face_direction_bits": 62 + } + }, + "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": { + "multi_face_direction_bits": 54 + } + }, + "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": { + "multi_face_direction_bits": 60 + } + }, + "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": { + "multi_face_direction_bits": 52 + } + }, + "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": { + "multi_face_direction_bits": 60 + } + }, + "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": { + "multi_face_direction_bits": 52 + } + }, + "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": { + "multi_face_direction_bits": 58 + } + }, + "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": { + "multi_face_direction_bits": 50 + } + }, + "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": { + "multi_face_direction_bits": 58 + } + }, + "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": { + "multi_face_direction_bits": 50 + } + }, + "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": { + "multi_face_direction_bits": 56 + } + }, + "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": { + "multi_face_direction_bits": 48 + } + }, + "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": { + "multi_face_direction_bits": 56 + } + }, + "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": { + "multi_face_direction_bits": 48 + } + }, + "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": { + "multi_face_direction_bits": 46 + } + }, + "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": { + "multi_face_direction_bits": 38 + } + }, + "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": { + "multi_face_direction_bits": 46 + } + }, + "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": { + "multi_face_direction_bits": 38 + } + }, + "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": { + "multi_face_direction_bits": 44 + } + }, + "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": { + "multi_face_direction_bits": 36 + } + }, + "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": { + "multi_face_direction_bits": 44 + } + }, + "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": { + "multi_face_direction_bits": 36 + } + }, + "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": { + "multi_face_direction_bits": 42 + } + }, + "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": { + "multi_face_direction_bits": 34 + } + }, + "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": { + "multi_face_direction_bits": 42 + } + }, + "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": { + "multi_face_direction_bits": 34 + } + }, + "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": { + "multi_face_direction_bits": 40 + } + }, + "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": { + "multi_face_direction_bits": 32 + } + }, + "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": { + "multi_face_direction_bits": 40 + } + }, + "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": { + "multi_face_direction_bits": 32 + } + }, + "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": { + "multi_face_direction_bits": 30 + } + }, + "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": { + "multi_face_direction_bits": 22 + } + }, + "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": { + "multi_face_direction_bits": 30 + } + }, + "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": { + "multi_face_direction_bits": 22 + } + }, + "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": { + "multi_face_direction_bits": 28 + } + }, + "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": { + "multi_face_direction_bits": 20 + } + }, + "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": { + "multi_face_direction_bits": 28 + } + }, + "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": { + "multi_face_direction_bits": 20 + } + }, + "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": { + "multi_face_direction_bits": 26 + } + }, + "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": { + "multi_face_direction_bits": 18 + } + }, + "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": { + "multi_face_direction_bits": 26 + } + }, + "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": { + "multi_face_direction_bits": 18 + } + }, + "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": { + "multi_face_direction_bits": 24 + } + }, + "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": { + "multi_face_direction_bits": 16 + } + }, + "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": { + "multi_face_direction_bits": 24 + } + }, + "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": { + "multi_face_direction_bits": 16 + } + }, + "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": { + "multi_face_direction_bits": 14 + } + }, + "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": { + "multi_face_direction_bits": 6 + } + }, + "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": { + "multi_face_direction_bits": 14 + } + }, + "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": { + "multi_face_direction_bits": 6 + } + }, + "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": { + "multi_face_direction_bits": 12 + } + }, + "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": { + "multi_face_direction_bits": 4 + } + }, + "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": { + "multi_face_direction_bits": 12 + } + }, + "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": { + "multi_face_direction_bits": 4 + } + }, + "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": { + "multi_face_direction_bits": 10 + } + }, + "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": { + "multi_face_direction_bits": 2 + } + }, + "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": { + "multi_face_direction_bits": 10 + } + }, + "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": { + "multi_face_direction_bits": 2 + } + }, + "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": { + "multi_face_direction_bits": 8 + } + }, + "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": { + "multi_face_direction_bits": 0 + } + }, + "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": { + "multi_face_direction_bits": 8 + } + }, + "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": { + "multi_face_direction_bits": 0 + } + }, + "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": { + "bloom": true + } + }, + "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": { + "bloom": false + } + }, + "minecraft:sculk_shrieker[can_summon=true,shrieking=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "active": true, + "can_summon": true + } + }, + "minecraft:sculk_shrieker[can_summon=true,shrieking=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "active": true, + "can_summon": true + } + }, + "minecraft:sculk_shrieker[can_summon=true,shrieking=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "active": false, + "can_summon": true + } + }, + "minecraft:sculk_shrieker[can_summon=true,shrieking=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "active": false, + "can_summon": true + } + }, + "minecraft:sculk_shrieker[can_summon=false,shrieking=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "active": true, + "can_summon": false + } + }, + "minecraft:sculk_shrieker[can_summon=false,shrieking=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "active": true, + "can_summon": false + } + }, + "minecraft:sculk_shrieker[can_summon=false,shrieking=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "active": false, + "can_summon": false + } + }, + "minecraft:sculk_shrieker[can_summon=false,shrieking=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:sculk_shrieker", + "block_hardness": 3.0, + "collision_index": 63, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "active": false, + "can_summon": false + } + }, + "minecraft:copper_block": { + "bedrock_identifier": "minecraft:copper_block", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:exposed_copper": { + "bedrock_identifier": "minecraft:exposed_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:weathered_copper": { + "bedrock_identifier": "minecraft:weathered_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:oxidized_copper": { + "bedrock_identifier": "minecraft:oxidized_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:copper_ore": { + "bedrock_identifier": "minecraft:copper_ore", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:deepslate_copper_ore": { + "bedrock_identifier": "minecraft:deepslate_copper_ore", + "block_hardness": 4.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:oxidized_cut_copper": { + "bedrock_identifier": "minecraft:oxidized_cut_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:weathered_cut_copper": { + "bedrock_identifier": "minecraft:weathered_cut_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:exposed_cut_copper": { + "bedrock_identifier": "minecraft:exposed_cut_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:cut_copper": { + "bedrock_identifier": "minecraft:cut_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:oxidized_chiseled_copper": { + "bedrock_identifier": "minecraft:oxidized_chiseled_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:weathered_chiseled_copper": { + "bedrock_identifier": "minecraft:weathered_chiseled_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:exposed_chiseled_copper": { + "bedrock_identifier": "minecraft:exposed_chiseled_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:chiseled_copper": { + "bedrock_identifier": "minecraft:chiseled_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "bedrock_identifier": "minecraft:waxed_oxidized_chiseled_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_weathered_chiseled_copper": { + "bedrock_identifier": "minecraft:waxed_weathered_chiseled_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_exposed_chiseled_copper": { + "bedrock_identifier": "minecraft:waxed_exposed_chiseled_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_chiseled_copper": { + "bedrock_identifier": "minecraft:waxed_chiseled_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:oxidized_cut_copper_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:oxidized_cut_copper_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:oxidized_cut_copper_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:oxidized_cut_copper_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:oxidized_cut_copper_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:weathered_cut_copper_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:weathered_cut_copper_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:weathered_cut_copper_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:weathered_cut_copper_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:weathered_cut_copper_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:exposed_cut_copper_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:exposed_cut_copper_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:exposed_cut_copper_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:exposed_cut_copper_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:exposed_cut_copper_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cut_copper_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:cut_copper_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:cut_copper_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cut_copper_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cut_copper_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cut_copper_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_copper_block": { + "bedrock_identifier": "minecraft:waxed_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_weathered_copper": { + "bedrock_identifier": "minecraft:waxed_weathered_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_exposed_copper": { + "bedrock_identifier": "minecraft:waxed_exposed_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_oxidized_copper": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_oxidized_cut_copper": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_weathered_cut_copper": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_exposed_cut_copper": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_cut_copper": { + "bedrock_identifier": "minecraft:waxed_cut_copper", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_weathered_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_exposed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_cut_copper_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_stairs", + "block_hardness": 3.0, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:waxed_oxidized_cut_copper_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:waxed_oxidized_cut_copper_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_oxidized_cut_copper_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_oxidized_cut_copper_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_weathered_cut_copper_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:waxed_weathered_cut_copper_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_weathered_cut_copper_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_weathered_cut_copper_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_exposed_cut_copper_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:waxed_exposed_cut_copper_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_exposed_cut_copper_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_exposed_cut_copper_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_cut_copper_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:waxed_cut_copper_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_cut_copper_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:waxed_cut_copper_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_double_cut_copper_slab", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=north,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=south,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=west,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 56, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=upper,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": true, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=left,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=left,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 57, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=left,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=left,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=right,open=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=right,open=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 55, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=right,open=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_door[facing=east,half=lower,hinge=right,open=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_door", + "block_hardness": 3.0, + "collision_index": 54, + "piston_behavior": "destroy", + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upper_block_bit": false, + "door_hinge_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_exposed_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_oxidized_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 55, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 3, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 57, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 2, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 56, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 1, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 90, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": true, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 54, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": true + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:waxed_weathered_copper_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_trapdoor", + "block_hardness": 3.0, + "collision_index": 91, + "can_break_with_hand": false, + "bedrock_states": { + "direction": 0, + "upside_down_bit": false, + "open_bit": false + } + }, + "minecraft:copper_grate[waterlogged=true]": { + "bedrock_identifier": "minecraft:copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:copper_grate[waterlogged=false]": { + "bedrock_identifier": "minecraft:copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:exposed_copper_grate[waterlogged=true]": { + "bedrock_identifier": "minecraft:exposed_copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:exposed_copper_grate[waterlogged=false]": { + "bedrock_identifier": "minecraft:exposed_copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:weathered_copper_grate[waterlogged=true]": { + "bedrock_identifier": "minecraft:weathered_copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:weathered_copper_grate[waterlogged=false]": { + "bedrock_identifier": "minecraft:weathered_copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:oxidized_copper_grate[waterlogged=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:oxidized_copper_grate[waterlogged=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_copper_grate[waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_copper_grate[waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_exposed_copper_grate[waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_exposed_copper_grate[waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_weathered_copper_grate[waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_weathered_copper_grate[waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_oxidized_copper_grate[waterlogged=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:waxed_oxidized_copper_grate[waterlogged=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_grate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:copper_bulb[lit=true,powered=true]": { + "bedrock_identifier": "minecraft:copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": true + } + }, + "minecraft:copper_bulb[lit=true,powered=false]": { + "bedrock_identifier": "minecraft:copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": false + } + }, + "minecraft:copper_bulb[lit=false,powered=true]": { + "bedrock_identifier": "minecraft:copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": true + } + }, + "minecraft:copper_bulb[lit=false,powered=false]": { + "bedrock_identifier": "minecraft:copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": false + } + }, + "minecraft:exposed_copper_bulb[lit=true,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": true + } + }, + "minecraft:exposed_copper_bulb[lit=true,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": false + } + }, + "minecraft:exposed_copper_bulb[lit=false,powered=true]": { + "bedrock_identifier": "minecraft:exposed_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": true + } + }, + "minecraft:exposed_copper_bulb[lit=false,powered=false]": { + "bedrock_identifier": "minecraft:exposed_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": false + } + }, + "minecraft:weathered_copper_bulb[lit=true,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": true + } + }, + "minecraft:weathered_copper_bulb[lit=true,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": false + } + }, + "minecraft:weathered_copper_bulb[lit=false,powered=true]": { + "bedrock_identifier": "minecraft:weathered_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": true + } + }, + "minecraft:weathered_copper_bulb[lit=false,powered=false]": { + "bedrock_identifier": "minecraft:weathered_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": false + } + }, + "minecraft:oxidized_copper_bulb[lit=true,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": true + } + }, + "minecraft:oxidized_copper_bulb[lit=true,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": false + } + }, + "minecraft:oxidized_copper_bulb[lit=false,powered=true]": { + "bedrock_identifier": "minecraft:oxidized_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": true + } + }, + "minecraft:oxidized_copper_bulb[lit=false,powered=false]": { + "bedrock_identifier": "minecraft:oxidized_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": false + } + }, + "minecraft:waxed_copper_bulb[lit=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": true + } + }, + "minecraft:waxed_copper_bulb[lit=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": false + } + }, + "minecraft:waxed_copper_bulb[lit=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": true + } + }, + "minecraft:waxed_copper_bulb[lit=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": false + } + }, + "minecraft:waxed_exposed_copper_bulb[lit=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": true + } + }, + "minecraft:waxed_exposed_copper_bulb[lit=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": false + } + }, + "minecraft:waxed_exposed_copper_bulb[lit=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": true + } + }, + "minecraft:waxed_exposed_copper_bulb[lit=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_exposed_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": false + } + }, + "minecraft:waxed_weathered_copper_bulb[lit=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": true + } + }, + "minecraft:waxed_weathered_copper_bulb[lit=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": false + } + }, + "minecraft:waxed_weathered_copper_bulb[lit=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": true + } + }, + "minecraft:waxed_weathered_copper_bulb[lit=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_weathered_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": false + } + }, + "minecraft:waxed_oxidized_copper_bulb[lit=true,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": true + } + }, + "minecraft:waxed_oxidized_copper_bulb[lit=true,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": true, + "powered_bit": false + } + }, + "minecraft:waxed_oxidized_copper_bulb[lit=false,powered=true]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": true + } + }, + "minecraft:waxed_oxidized_copper_bulb[lit=false,powered=false]": { + "bedrock_identifier": "minecraft:waxed_oxidized_copper_bulb", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "lit": false, + "powered_bit": false + } + }, + "minecraft:lightning_rod[facing=north,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 180, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:lightning_rod[facing=north,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 180, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:lightning_rod[facing=north,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 180, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:lightning_rod[facing=north,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 180, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 2 + } + }, + "minecraft:lightning_rod[facing=east,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 181, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:lightning_rod[facing=east,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 181, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:lightning_rod[facing=east,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 181, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:lightning_rod[facing=east,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 181, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 5 + } + }, + "minecraft:lightning_rod[facing=south,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 180, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:lightning_rod[facing=south,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 180, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:lightning_rod[facing=south,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 180, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:lightning_rod[facing=south,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 180, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 3 + } + }, + "minecraft:lightning_rod[facing=west,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 181, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:lightning_rod[facing=west,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 181, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:lightning_rod[facing=west,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 181, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:lightning_rod[facing=west,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 181, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 4 + } + }, + "minecraft:lightning_rod[facing=up,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 182, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:lightning_rod[facing=up,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 182, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:lightning_rod[facing=up,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 182, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:lightning_rod[facing=up,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 182, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 1 + } + }, + "minecraft:lightning_rod[facing=down,powered=true,waterlogged=true]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 182, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0 + } + }, + "minecraft:lightning_rod[facing=down,powered=true,waterlogged=false]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 182, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0 + } + }, + "minecraft:lightning_rod[facing=down,powered=false,waterlogged=true]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 182, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0 + } + }, + "minecraft:lightning_rod[facing=down,powered=false,waterlogged=false]": { + "bedrock_identifier": "minecraft:lightning_rod", + "block_hardness": 3.0, + "collision_index": 182, + "can_break_with_hand": false, + "bedrock_states": { + "facing_direction": 0 + } + }, + "minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=true]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 311, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "merge", + "hanging": false + } + }, + "minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 311, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "merge", + "hanging": false + } + }, + "minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=true]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 311, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "merge", + "hanging": true + } + }, + "minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=false]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 311, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "merge", + "hanging": true + } + }, + "minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=true]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 312, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "tip", + "hanging": false + } + }, + "minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=false]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 312, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "tip", + "hanging": false + } + }, + "minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=true]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 313, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "tip", + "hanging": true + } + }, + "minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=false]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 313, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "tip", + "hanging": true + } + }, + "minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=true]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 314, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "frustum", + "hanging": false + } + }, + "minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=false]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 314, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "frustum", + "hanging": false + } + }, + "minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=true]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 314, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "frustum", + "hanging": true + } + }, + "minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=false]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 314, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "frustum", + "hanging": true + } + }, + "minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=true]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 315, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "middle", + "hanging": false + } + }, + "minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=false]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 315, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "middle", + "hanging": false + } + }, + "minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=true]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 315, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "middle", + "hanging": true + } + }, + "minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=false]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 315, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "middle", + "hanging": true + } + }, + "minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=true]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 316, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "base", + "hanging": false + } + }, + "minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=false]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 316, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "base", + "hanging": false + } + }, + "minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=true]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 316, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "base", + "hanging": true + } + }, + "minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=false]": { + "bedrock_identifier": "minecraft:pointed_dripstone", + "block_hardness": 1.5, + "collision_index": 316, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "dripstone_thickness": "base", + "hanging": true + } + }, + "minecraft:dripstone_block": { + "bedrock_identifier": "minecraft:dripstone_block", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:cave_vines[age=0,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 0 + } + }, + "minecraft:cave_vines[age=0,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 0 + } + }, + "minecraft:cave_vines[age=1,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 1 + } + }, + "minecraft:cave_vines[age=1,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 1 + } + }, + "minecraft:cave_vines[age=2,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 2 + } + }, + "minecraft:cave_vines[age=2,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 2 + } + }, + "minecraft:cave_vines[age=3,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 3 + } + }, + "minecraft:cave_vines[age=3,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 3 + } + }, + "minecraft:cave_vines[age=4,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 4 + } + }, + "minecraft:cave_vines[age=4,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 4 + } + }, + "minecraft:cave_vines[age=5,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 5 + } + }, + "minecraft:cave_vines[age=5,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 5 + } + }, + "minecraft:cave_vines[age=6,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 6 + } + }, + "minecraft:cave_vines[age=6,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 6 + } + }, + "minecraft:cave_vines[age=7,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 7 + } + }, + "minecraft:cave_vines[age=7,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 7 + } + }, + "minecraft:cave_vines[age=8,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 8 + } + }, + "minecraft:cave_vines[age=8,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 8 + } + }, + "minecraft:cave_vines[age=9,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 9 + } + }, + "minecraft:cave_vines[age=9,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 9 + } + }, + "minecraft:cave_vines[age=10,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 10 + } + }, + "minecraft:cave_vines[age=10,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 10 + } + }, + "minecraft:cave_vines[age=11,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 11 + } + }, + "minecraft:cave_vines[age=11,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 11 + } + }, + "minecraft:cave_vines[age=12,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 12 + } + }, + "minecraft:cave_vines[age=12,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 12 + } + }, + "minecraft:cave_vines[age=13,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 13 + } + }, + "minecraft:cave_vines[age=13,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 13 + } + }, + "minecraft:cave_vines[age=14,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 14 + } + }, + "minecraft:cave_vines[age=14,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 14 + } + }, + "minecraft:cave_vines[age=15,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 15 + } + }, + "minecraft:cave_vines[age=15,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 15 + } + }, + "minecraft:cave_vines[age=16,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 16 + } + }, + "minecraft:cave_vines[age=16,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 16 + } + }, + "minecraft:cave_vines[age=17,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 17 + } + }, + "minecraft:cave_vines[age=17,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 17 + } + }, + "minecraft:cave_vines[age=18,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 18 + } + }, + "minecraft:cave_vines[age=18,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 18 + } + }, + "minecraft:cave_vines[age=19,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 19 + } + }, + "minecraft:cave_vines[age=19,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 19 + } + }, + "minecraft:cave_vines[age=20,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 20 + } + }, + "minecraft:cave_vines[age=20,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 20 + } + }, + "minecraft:cave_vines[age=21,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 21 + } + }, + "minecraft:cave_vines[age=21,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 21 + } + }, + "minecraft:cave_vines[age=22,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 22 + } + }, + "minecraft:cave_vines[age=22,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 22 + } + }, + "minecraft:cave_vines[age=23,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 23 + } + }, + "minecraft:cave_vines[age=23,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 23 + } + }, + "minecraft:cave_vines[age=24,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 24 + } + }, + "minecraft:cave_vines[age=24,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 24 + } + }, + "minecraft:cave_vines[age=25,berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_head_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 25 + } + }, + "minecraft:cave_vines[age=25,berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 25 + } + }, + "minecraft:cave_vines_plant[berries=true]": { + "bedrock_identifier": "minecraft:cave_vines_body_with_berries", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 0 + } + }, + "minecraft:cave_vines_plant[berries=false]": { + "bedrock_identifier": "minecraft:cave_vines", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:glow_berries", + "can_break_with_hand": true, + "bedrock_states": { + "growing_plant_age": 0 + } + }, + "minecraft:spore_blossom": { + "bedrock_identifier": "minecraft:spore_blossom", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:azalea": { + "bedrock_identifier": "minecraft:azalea", + "block_hardness": 0.0, + "collision_index": 317, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true + }, + "minecraft:flowering_azalea": { + "bedrock_identifier": "minecraft:flowering_azalea", + "block_hardness": 0.0, + "collision_index": 317, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "pottable": true + }, + "minecraft:moss_carpet": { + "bedrock_identifier": "minecraft:moss_carpet", + "block_hardness": 0.1, + "collision_index": 179, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:pink_petals[facing=north,flower_amount=1]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 0, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:pink_petals[facing=north,flower_amount=2]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 1, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:pink_petals[facing=north,flower_amount=3]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 2, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:pink_petals[facing=north,flower_amount=4]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 3, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:pink_petals[facing=south,flower_amount=1]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 0, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:pink_petals[facing=south,flower_amount=2]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 1, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:pink_petals[facing=south,flower_amount=3]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 2, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:pink_petals[facing=south,flower_amount=4]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 3, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:pink_petals[facing=west,flower_amount=1]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 0, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:pink_petals[facing=west,flower_amount=2]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 1, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:pink_petals[facing=west,flower_amount=3]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 2, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:pink_petals[facing=west,flower_amount=4]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 3, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:pink_petals[facing=east,flower_amount=1]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 0, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:pink_petals[facing=east,flower_amount=2]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 1, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:pink_petals[facing=east,flower_amount=3]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 2, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:pink_petals[facing=east,flower_amount=4]": { + "bedrock_identifier": "minecraft:pink_petals", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "growth": 3, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:moss_block": { + "bedrock_identifier": "minecraft:moss_block", + "block_hardness": 0.1, + "collision_index": 1, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:big_dripleaf[facing=north,tilt=none,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:big_dripleaf[facing=north,tilt=none,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:big_dripleaf[facing=north,tilt=unstable,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "unstable", + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:big_dripleaf[facing=north,tilt=unstable,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "unstable", + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:big_dripleaf[facing=north,tilt=partial,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 319, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "partial_tilt", + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:big_dripleaf[facing=north,tilt=partial,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 319, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "partial_tilt", + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:big_dripleaf[facing=north,tilt=full,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "full_tilt", + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:big_dripleaf[facing=north,tilt=full,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "full_tilt", + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:big_dripleaf[facing=south,tilt=none,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:big_dripleaf[facing=south,tilt=none,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:big_dripleaf[facing=south,tilt=unstable,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "unstable", + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:big_dripleaf[facing=south,tilt=unstable,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "unstable", + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:big_dripleaf[facing=south,tilt=partial,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 319, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "partial_tilt", + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:big_dripleaf[facing=south,tilt=partial,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 319, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "partial_tilt", + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:big_dripleaf[facing=south,tilt=full,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "full_tilt", + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:big_dripleaf[facing=south,tilt=full,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "full_tilt", + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:big_dripleaf[facing=west,tilt=none,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:big_dripleaf[facing=west,tilt=none,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:big_dripleaf[facing=west,tilt=unstable,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "unstable", + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:big_dripleaf[facing=west,tilt=unstable,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "unstable", + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:big_dripleaf[facing=west,tilt=partial,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 319, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "partial_tilt", + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:big_dripleaf[facing=west,tilt=partial,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 319, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "partial_tilt", + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:big_dripleaf[facing=west,tilt=full,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "full_tilt", + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:big_dripleaf[facing=west,tilt=full,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "full_tilt", + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:big_dripleaf[facing=east,tilt=none,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:big_dripleaf[facing=east,tilt=none,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:big_dripleaf[facing=east,tilt=unstable,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "unstable", + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:big_dripleaf[facing=east,tilt=unstable,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 318, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "unstable", + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:big_dripleaf[facing=east,tilt=partial,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 319, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "partial_tilt", + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:big_dripleaf[facing=east,tilt=partial,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 319, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "partial_tilt", + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:big_dripleaf[facing=east,tilt=full,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "full_tilt", + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:big_dripleaf[facing=east,tilt=full,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": true, + "big_dripleaf_tilt": "full_tilt", + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:big_dripleaf_stem[facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:big_dripleaf", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": false, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:big_dripleaf_stem[facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:big_dripleaf", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": false, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:big_dripleaf_stem[facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:big_dripleaf", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": false, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:big_dripleaf_stem[facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:big_dripleaf", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": false, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:big_dripleaf_stem[facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:big_dripleaf", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": false, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:big_dripleaf_stem[facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:big_dripleaf", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": false, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:big_dripleaf_stem[facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:big_dripleaf", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": false, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:big_dripleaf_stem[facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:big_dripleaf", + "block_hardness": 0.1, + "collision_index": 0, + "piston_behavior": "destroy", + "pick_item": "minecraft:big_dripleaf", + "can_break_with_hand": true, + "bedrock_states": { + "big_dripleaf_head": false, + "big_dripleaf_tilt": "none", + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:small_dripleaf[facing=north,half=upper,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:small_dripleaf[facing=north,half=upper,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:small_dripleaf[facing=north,half=lower,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:small_dripleaf[facing=north,half=lower,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "west" + } + }, + "minecraft:small_dripleaf[facing=south,half=upper,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:small_dripleaf[facing=south,half=upper,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:small_dripleaf[facing=south,half=lower,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:small_dripleaf[facing=south,half=lower,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "east" + } + }, + "minecraft:small_dripleaf[facing=west,half=upper,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:small_dripleaf[facing=west,half=upper,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:small_dripleaf[facing=west,half=lower,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:small_dripleaf[facing=west,half=lower,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "south" + } + }, + "minecraft:small_dripleaf[facing=east,half=upper,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:small_dripleaf[facing=east,half=upper,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": true, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:small_dripleaf[facing=east,half=lower,waterlogged=true]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:small_dripleaf[facing=east,half=lower,waterlogged=false]": { + "bedrock_identifier": "minecraft:small_dripleaf_block", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true, + "bedrock_states": { + "upper_block_bit": false, + "minecraft:cardinal_direction": "north" + } + }, + "minecraft:hanging_roots[waterlogged=true]": { + "bedrock_identifier": "minecraft:hanging_roots", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:hanging_roots[waterlogged=false]": { + "bedrock_identifier": "minecraft:hanging_roots", + "block_hardness": 0.0, + "collision_index": 0, + "piston_behavior": "destroy", + "can_break_with_hand": true + }, + "minecraft:rooted_dirt": { + "bedrock_identifier": "minecraft:dirt_with_roots", + "block_hardness": 0.5, + "collision_index": 1, + "can_break_with_hand": true + }, + "minecraft:mud": { + "bedrock_identifier": "minecraft:mud", + "block_hardness": 0.5, + "collision_index": 65, + "can_break_with_hand": true + }, + "minecraft:deepslate[axis=x]": { + "bedrock_identifier": "minecraft:deepslate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:deepslate[axis=y]": { + "bedrock_identifier": "minecraft:deepslate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:deepslate[axis=z]": { + "bedrock_identifier": "minecraft:deepslate", + "block_hardness": 3.0, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:cobbled_deepslate": { + "bedrock_identifier": "minecraft:cobbled_deepslate", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:cobbled_deepslate_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_slab", + "block_hardness": 3.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:cobbled_deepslate_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_slab", + "block_hardness": 3.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:cobbled_deepslate_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_slab", + "block_hardness": 3.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cobbled_deepslate_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_slab", + "block_hardness": 3.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cobbled_deepslate_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_double_slab", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cobbled_deepslate_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_double_slab", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:cobbled_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:cobbled_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate": { + "bedrock_identifier": "minecraft:polished_deepslate", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:polished_deepslate_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_slab", + "block_hardness": 3.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:polished_deepslate_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_slab", + "block_hardness": 3.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:polished_deepslate_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_slab", + "block_hardness": 3.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_deepslate_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_slab", + "block_hardness": 3.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_deepslate_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:polished_deepslate_double_slab", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_deepslate_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:polished_deepslate_double_slab", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:polished_deepslate_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:polished_deepslate_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tiles": { + "bedrock_identifier": "minecraft:deepslate_tiles", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_tile_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_slab", + "block_hardness": 3.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:deepslate_tile_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_slab", + "block_hardness": 3.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:deepslate_tile_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_slab", + "block_hardness": 3.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:deepslate_tile_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_slab", + "block_hardness": 3.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:deepslate_tile_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_tile_double_slab", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:deepslate_tile_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_tile_double_slab", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_tile_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_tile_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_bricks": { + "bedrock_identifier": "minecraft:deepslate_bricks", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 24, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 29, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=north,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 3, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 34, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 39, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=south,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 2, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 44, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 36, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 25, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 38, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 27, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 45, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 41, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 30, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 43, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=west,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 32, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 1, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 46, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 26, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 35, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 28, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=top,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 37, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": true + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 47, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 31, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=inner_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 40, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_left,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 33, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_stairs[facing=east,half=bottom,shape=outer_right,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_stairs", + "block_hardness": 3.5, + "collision_index": 42, + "can_break_with_hand": false, + "bedrock_states": { + "weirdo_direction": 0, + "upside_down_bit": false + } + }, + "minecraft:deepslate_brick_slab[type=top,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_slab", + "block_hardness": 3.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:deepslate_brick_slab[type=top,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_slab", + "block_hardness": 3.5, + "collision_index": 178, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "top" + } + }, + "minecraft:deepslate_brick_slab[type=bottom,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_slab", + "block_hardness": 3.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:deepslate_brick_slab[type=bottom,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_slab", + "block_hardness": 3.5, + "collision_index": 63, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:deepslate_brick_slab[type=double,waterlogged=true]": { + "bedrock_identifier": "minecraft:deepslate_brick_double_slab", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:deepslate_brick_slab[type=double,waterlogged=false]": { + "bedrock_identifier": "minecraft:deepslate_brick_double_slab", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false, + "bedrock_states": { + "minecraft:vertical_half": "bottom" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 134, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 135, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 142, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=none,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 143, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "none", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=low,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "short", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 150, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=none,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 151, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "none", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=low,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "short", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=none,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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": "none", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=low,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "short", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=true,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.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_post_bit": true, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=true,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=none]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 158, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "none" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=low]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "short" + } + }, + "minecraft:deepslate_brick_wall[east=tall,north=tall,south=tall,up=false,waterlogged=false,west=tall]": { + "bedrock_identifier": "minecraft:deepslate_brick_wall", + "block_hardness": 3.5, + "collision_index": 159, + "can_break_with_hand": false, + "bedrock_states": { + "wall_connection_type_east": "tall", + "wall_connection_type_north": "tall", + "wall_connection_type_south": "tall", + "wall_post_bit": false, + "wall_connection_type_west": "tall" + } + }, + "minecraft:chiseled_deepslate": { + "bedrock_identifier": "minecraft:chiseled_deepslate", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:cracked_deepslate_bricks": { + "bedrock_identifier": "minecraft:cracked_deepslate_bricks", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:cracked_deepslate_tiles": { + "bedrock_identifier": "minecraft:cracked_deepslate_tiles", + "block_hardness": 3.5, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:infested_deepslate[axis=x]": { + "bedrock_identifier": "minecraft:infested_deepslate", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "x" + } + }, + "minecraft:infested_deepslate[axis=y]": { + "bedrock_identifier": "minecraft:infested_deepslate", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "y" + } + }, + "minecraft:infested_deepslate[axis=z]": { + "bedrock_identifier": "minecraft:infested_deepslate", + "block_hardness": 1.5, + "collision_index": 1, + "can_break_with_hand": true, + "bedrock_states": { + "pillar_axis": "z" + } + }, + "minecraft:smooth_basalt": { + "bedrock_identifier": "minecraft:smooth_basalt", + "block_hardness": 1.25, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:raw_iron_block": { + "bedrock_identifier": "minecraft:raw_iron_block", + "block_hardness": 5.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:raw_copper_block": { + "bedrock_identifier": "minecraft:raw_copper_block", + "block_hardness": 5.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:raw_gold_block": { + "bedrock_identifier": "minecraft:raw_gold_block", + "block_hardness": 5.0, + "collision_index": 1, + "can_break_with_hand": false + }, + "minecraft:potted_azalea_bush": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:azalea", + "can_break_with_hand": true, + "bedrock_states": { + "update_bit": false + } + }, + "minecraft:potted_flowering_azalea_bush": { + "bedrock_identifier": "minecraft:flower_pot", + "block_hardness": 0.0, + "collision_index": 160, + "piston_behavior": "destroy", + "pick_item": "minecraft:flowering_azalea", + "can_break_with_hand": true, + "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 + }, + "minecraft:decorated_pot[cracked=true,facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0 + } + }, + "minecraft:decorated_pot[cracked=true,facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0 + } + }, + "minecraft:decorated_pot[cracked=true,facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2 + } + }, + "minecraft:decorated_pot[cracked=true,facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2 + } + }, + "minecraft:decorated_pot[cracked=true,facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3 + } + }, + "minecraft:decorated_pot[cracked=true,facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3 + } + }, + "minecraft:decorated_pot[cracked=true,facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1 + } + }, + "minecraft:decorated_pot[cracked=true,facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1 + } + }, + "minecraft:decorated_pot[cracked=false,facing=north,waterlogged=true]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0 + } + }, + "minecraft:decorated_pot[cracked=false,facing=north,waterlogged=false]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 0 + } + }, + "minecraft:decorated_pot[cracked=false,facing=south,waterlogged=true]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2 + } + }, + "minecraft:decorated_pot[cracked=false,facing=south,waterlogged=false]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 2 + } + }, + "minecraft:decorated_pot[cracked=false,facing=west,waterlogged=true]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3 + } + }, + "minecraft:decorated_pot[cracked=false,facing=west,waterlogged=false]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 3 + } + }, + "minecraft:decorated_pot[cracked=false,facing=east,waterlogged=true]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1 + } + }, + "minecraft:decorated_pot[cracked=false,facing=east,waterlogged=false]": { + "bedrock_identifier": "minecraft:decorated_pot", + "block_hardness": 0.0, + "collision_index": 116, + "piston_behavior": "destroy", + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "direction": 1 + } + }, + "minecraft:crafter[crafting=true,orientation=down_east,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "down_east", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=true,orientation=down_east,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "down_east", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=true,orientation=down_north,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "down_north", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=true,orientation=down_north,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "down_north", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=true,orientation=down_south,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "down_south", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=true,orientation=down_south,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "down_south", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=true,orientation=down_west,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "down_west", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=true,orientation=down_west,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "down_west", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=true,orientation=up_east,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "up_east", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=true,orientation=up_east,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "up_east", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=true,orientation=up_north,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "up_north", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=true,orientation=up_north,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "up_north", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=true,orientation=up_south,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "up_south", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=true,orientation=up_south,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "up_south", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=true,orientation=up_west,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "up_west", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=true,orientation=up_west,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "up_west", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=true,orientation=west_up,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "west_up", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=true,orientation=west_up,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "west_up", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=true,orientation=east_up,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "east_up", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=true,orientation=east_up,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "east_up", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=true,orientation=north_up,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "north_up", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=true,orientation=north_up,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "north_up", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=true,orientation=south_up,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "south_up", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=true,orientation=south_up,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": true, + "orientation": "south_up", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=false,orientation=down_east,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "down_east", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=false,orientation=down_east,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "down_east", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=false,orientation=down_north,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "down_north", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=false,orientation=down_north,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "down_north", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=false,orientation=down_south,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "down_south", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=false,orientation=down_south,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "down_south", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=false,orientation=down_west,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "down_west", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=false,orientation=down_west,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "down_west", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=false,orientation=up_east,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "up_east", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=false,orientation=up_east,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "up_east", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=false,orientation=up_north,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "up_north", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=false,orientation=up_north,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "up_north", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=false,orientation=up_south,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "up_south", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=false,orientation=up_south,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "up_south", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=false,orientation=up_west,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "up_west", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=false,orientation=up_west,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "up_west", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=false,orientation=west_up,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "west_up", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=false,orientation=west_up,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "west_up", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=false,orientation=east_up,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "east_up", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=false,orientation=east_up,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "east_up", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=false,orientation=north_up,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "north_up", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=false,orientation=north_up,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "north_up", + "triggered_bit": false + } + }, + "minecraft:crafter[crafting=false,orientation=south_up,triggered=true]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "south_up", + "triggered_bit": true + } + }, + "minecraft:crafter[crafting=false,orientation=south_up,triggered=false]": { + "bedrock_identifier": "minecraft:crafter", + "block_hardness": 1.5, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": true, + "bedrock_states": { + "crafting": false, + "orientation": "south_up", + "triggered_bit": false + } + }, + "minecraft:trial_spawner[trial_spawner_state=inactive]": { + "bedrock_identifier": "minecraft:trial_spawner", + "block_hardness": 50.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "trial_spawner_state": 0 + } + }, + "minecraft:trial_spawner[trial_spawner_state=waiting_for_players]": { + "bedrock_identifier": "minecraft:trial_spawner", + "block_hardness": 50.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "trial_spawner_state": 1 + } + }, + "minecraft:trial_spawner[trial_spawner_state=active]": { + "bedrock_identifier": "minecraft:trial_spawner", + "block_hardness": 50.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "trial_spawner_state": 2 + } + }, + "minecraft:trial_spawner[trial_spawner_state=waiting_for_reward_ejection]": { + "bedrock_identifier": "minecraft:trial_spawner", + "block_hardness": 50.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "trial_spawner_state": 3 + } + }, + "minecraft:trial_spawner[trial_spawner_state=ejecting_reward]": { + "bedrock_identifier": "minecraft:trial_spawner", + "block_hardness": 50.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "trial_spawner_state": 4 + } + }, + "minecraft:trial_spawner[trial_spawner_state=cooldown]": { + "bedrock_identifier": "minecraft:trial_spawner", + "block_hardness": 50.0, + "collision_index": 1, + "has_block_entity": true, + "can_break_with_hand": false, + "bedrock_states": { + "trial_spawner_state": 5 + } + } +} \ No newline at end of file diff --git a/src/JavaGen/database/ChunkDataStorage.php b/src/JavaGen/database/ChunkDataStorage.php new file mode 100644 index 0000000..1c7d456 --- /dev/null +++ b/src/JavaGen/database/ChunkDataStorage.php @@ -0,0 +1,80 @@ +structures[$dimension->value] = $config->getAll(true); + } + } + + public function __destruct() { + foreach ($this->structures as $dimension => $structures) { + $dimension = Dimension::from($dimension); + + $config = new Config(self::structurePath($dimension), Config::JSON); + $config->setAll($structures); + $config->save(); + } + } + + public function storeStructure(Structure $structure, Dimension $dimension): void { + $encodedBoundingBox = self::encodeBoundingBox($structure->getBoundingBox()); + if (!in_array($encodedBoundingBox, $this->structures[$dimension->value][$structure->getType()->value] ?? [], true)) { + $this->structures[$dimension->value][$structure->getType()->value][] = $encodedBoundingBox; + } + } + + public function getStructuresInDimension(Dimension $dimension): array { + $structures = []; + foreach ($this->structures[$dimension->value] as $type => $boundingBoxes) { + $type = StructureType::from($type); + foreach ($boundingBoxes as $boundingBox) { + $structures[] = new Structure($type, self::decodeBoundingBox($boundingBox)); + } + } + return $structures; + } + + public function structureExists(Structure $structure): bool { + return in_array( + self::encodeBoundingBox($structure->getBoundingBox()), + $this->structures[$structure->getType()->getDimension()->value][$structure->getType()->value] ?? [], + true + ); + } + + private static function encodeBoundingBox(AxisAlignedBB $aabb): string { + return $aabb->minX . "," . $aabb->minY . "," . $aabb->minZ . "," . $aabb->maxX . "," . $aabb->maxY . "," . $aabb->maxZ; + } + + private static function decodeBoundingBox(string $aabb): AxisAlignedBB { + return new AxisAlignedBB(...array_map('intval', explode(",", $aabb))); + } + + private static function structurePath(Dimension $dimension): string { + return getcwd() . DIRECTORY_SEPARATOR . "worlds" . DIRECTORY_SEPARATOR . $dimension->value . ".json"; + } +} \ No newline at end of file diff --git a/src/JavaGen/event/StructureGenerateEvent.php b/src/JavaGen/event/StructureGenerateEvent.php new file mode 100644 index 0000000..d82787a --- /dev/null +++ b/src/JavaGen/event/StructureGenerateEvent.php @@ -0,0 +1,20 @@ +structure; + } +} \ No newline at end of file diff --git a/src/JavaGen/generator/BaseJavaGenerator.php b/src/JavaGen/generator/BaseJavaGenerator.php new file mode 100644 index 0000000..4fa9647 --- /dev/null +++ b/src/JavaGen/generator/BaseJavaGenerator.php @@ -0,0 +1,181 @@ +getChunk($chunkX, $chunkZ); + + /** + * @var BinaryStream $stream + * @var BlockPalette $palette + */ + JavaRequests::requestChunk($this->getDimension(), $chunkX, $chunkZ, $stream); + + $minIndex = (static::MIN_Y >> 4); + $maxIndex = ((static::MAX_Y - 1) >> 4); + for ($i = $minIndex; $i <= $maxIndex; $i++) { + $chunk->setSubChunk($i, self::readSubChunk($stream)); + } + + $saveData = [ + "chunkX" => $chunkX, + "chunkZ" => $chunkZ, + "dimension" => $this->getDimension()->value + ]; + + $tileCount = $stream->getInt(); + if ($tileCount > 0) { + for ($i = 0; $i < $tileCount; $i++) { + $tileData = $stream->get($stream->getUnsignedVarInt()); + $saveData["tiles"][] = json_decode($tileData, true); + } + } + + $structureCount = $stream->getInt(); + for ($i = 0; $i < $structureCount; $i++) { + $boundingBox = $stream->get($stream->getUnsignedVarInt()); + $name = str_replace("minecraft:", "", $stream->get($stream->getUnsignedVarInt())); + $structureType = StructureType::tryFrom($name); + if ($structureType === null) { + throw new InvalidArgumentException("Structure type for name " . $name . " not found"); + } + $saveData["structures"][] = [ + "name" => $name, + "boundingBox" => $boundingBox + ]; + } + if (isset($saveData["tiles"]) || isset($saveData["structures"])) { + $this->mergeWorkerData($saveData); + } + } + + public function mergeWorkerData(array $data): void { + $worker = Thread::getCurrentThread(); + if ($worker instanceof AsyncWorker) { + $existing = $worker->getFromThreadStore(self::WORKER_DATA); + if ($existing !== null) { + $existing = json_decode($existing, true); + $existing[] = $data; + $data = $existing; + } else { + $data = [$data]; + } + $encodedData = json_encode($data); + if ($encodedData === false) { + throw new RuntimeException("Failed to encode JSON array: " . igbinary_serialize($data)); + } + $worker->saveToThreadStore(self::WORKER_DATA, $encodedData); + } else { + throw new RuntimeException("Did not expect to be in a " . $worker::class . " instead of " . AsyncWorker::class); + } + } + + public static function readSubChunk(BinaryStream $stream): SubChunk { + $subChunk = new SubChunk( + Block::EMPTY_STATE_ID, + [new PalettedBlockArray(Block::EMPTY_STATE_ID)], + new PalettedBlockArray(static::DEFAULT_BIOME) + ); + $empty = $stream->getByte(); + if ($empty === 1) { + return $subChunk; + } + + $bitsPerBlock = $stream->getByte(); + if ($bitsPerBlock > 0) { + $paletteSize = $stream->getInt(); + $stateIdMap = []; + for ($j = 0; $j < $paletteSize; $j++) { + $stateIdMap[] = $stream->get($stream->getUnsignedVarInt()); + } + $blockPalette = new BlockPalette($stateIdMap); + $blockStorageSize = $stream->getInt(); + $blockData = []; + for ($j = 0; $j < $blockStorageSize; $j++) { + $blockData[] = $blockPalette->getBlockFromIndex($stream->getInt()); + } + } else { + $blockPalette = new BlockPalette([$stream->get($stream->getUnsignedVarInt())]); + $blockData = array_fill(0, 4096, $blockPalette->getBlockFromIndex(0)); + } + + $bitsPerBiome = $stream->getByte(); + if ($bitsPerBiome > 0) { + $biomePaletteSize = $stream->getInt(); + $biomes = []; + for ($j = 0; $j < $biomePaletteSize; $j++) { + $biomes[] = $stream->get($stream->getUnsignedVarInt()); + } + $biomePalette = new BiomePalette($biomes, static::DEFAULT_BIOME); + + $biomeStorageSize = $stream->getInt(); + $biomeData = []; + for ($i = 0; $i < $biomeStorageSize; $i++) { + $biomeData[] = $stream->getByte(); + } + } else { + $biomePalette = new BiomePalette([$stream->get($stream->getUnsignedVarInt())], static::DEFAULT_BIOME); + $biomeData = array_fill(0, 64, 0); + } + + $blockOffset = 0; + for ($y = 0; $y < 16; $y++) { + for ($z = 0; $z < 16; $z++) { + $biomeZ = $z >> 2; + for ($x = 0; $x < 16; $x++) { + $biomeX = $x >> 2; + $subChunk->setBlockStateId($x, $y, $z, $blockData[$blockOffset++]); + $biomeOffset = ((($y | $biomeZ) << 2) | $biomeX); + $subChunk->getBiomeArray()->set($x, $y, $z, $biomePalette->get($biomeData[$biomeOffset])); + } + } + } + return $subChunk; + } + + public function populateChunk(ChunkManager $world, int $chunkX, int $chunkZ): void {} + + abstract public function getDimension(): Dimension; +} \ No newline at end of file diff --git a/src/JavaGen/generator/EndGenerator.php b/src/JavaGen/generator/EndGenerator.php new file mode 100644 index 0000000..ca9cd91 --- /dev/null +++ b/src/JavaGen/generator/EndGenerator.php @@ -0,0 +1,21 @@ +getWorldManager(); + $dimensions = GeneratorNames::fromDimension($this); + foreach ($worldManager->getWorlds() as $world) { + if ($world->getProvider()->getWorldData()->getGenerator() === $dimensions) { + return $world; + } + } + return null; + } +} \ No newline at end of file diff --git a/src/JavaGen/helper/GeneratorNames.php b/src/JavaGen/helper/GeneratorNames.php new file mode 100644 index 0000000..71f1488 --- /dev/null +++ b/src/JavaGen/helper/GeneratorNames.php @@ -0,0 +1,40 @@ +getProvider()->getWorldData()->getGenerator(); + } + return match($world_or_generator) { + self::OVERWORLD => Dimension::OVERWORLD, + self::NETHER => Dimension::NETHER, + self::END => Dimension::END, + default => null + }; + } + + public static function fromDimension(Dimension $dimension): string { + return match ($dimension) { + Dimension::OVERWORLD => self::OVERWORLD, + Dimension::NETHER => self::NETHER, + Dimension::END => self::END + }; + } +} \ No newline at end of file diff --git a/src/JavaGen/helper/LegacyItemMetaIdMap.php b/src/JavaGen/helper/LegacyItemMetaIdMap.php new file mode 100644 index 0000000..5dc4d49 --- /dev/null +++ b/src/JavaGen/helper/LegacyItemMetaIdMap.php @@ -0,0 +1,29 @@ + $complexEntry) { + foreach ($complexEntry as $meta => $name) { + $this->idToNamesMap[$basename][$meta] = $name; + } + } + } + + public function getMeta(string $name, int $meta): string { + return $this->idToNamesMap[$name][$meta] ?? $name; + } +} \ No newline at end of file diff --git a/src/JavaGen/helper/biome/BiomeIdentifierRegistry.php b/src/JavaGen/helper/biome/BiomeIdentifierRegistry.php new file mode 100644 index 0000000..3033d1f --- /dev/null +++ b/src/JavaGen/helper/biome/BiomeIdentifierRegistry.php @@ -0,0 +1,106 @@ + $mappings + */ + private array $mappings; + + public function __construct() { + $this->registerDefaultBiomes(); + } + + private function registerDefaultBiomes(): void { + $this->registerMapping("badlands", BiomeIds::MESA); + $this->registerMapping("bamboo_jungle", BiomeIds::BAMBOO_JUNGLE); + $this->registerMapping("basalt_deltas", BiomeIds::BASALT_DELTAS); + $this->registerMapping("beach", BiomeIds::BEACH); + $this->registerMapping("cherry_grove", BiomeIds::CHERRY_GROVE); + $this->registerMapping("cold_ocean", BiomeIds::COLD_OCEAN); + $this->registerMapping("crimson_forest", BiomeIds::CRIMSON_FOREST); + $this->registerMapping("dark_forest", BiomeIds::DEEP_DARK); + $this->registerMapping("deep_cold_ocean", BiomeIds::DEEP_COLD_OCEAN); + $this->registerMapping("deep_dark", BiomeIds::DEEP_DARK); + $this->registerMapping("deep_frozen_ocean", BiomeIds::DEEP_FROZEN_OCEAN); + $this->registerMapping("deep_lukewarm_ocean", BiomeIds::DEEP_LUKEWARM_OCEAN); + $this->registerMapping("deep_ocean", BiomeIds::DEEP_OCEAN); + $this->registerMapping("desert", BiomeIds::DESERT); + $this->registerMapping("dripstone_caves", BiomeIds::DRIPSTONE_CAVES); + $this->registerMapping("end_barrens", BiomeIds::THE_END); + $this->registerMapping("end_highlands", BiomeIds::THE_END); + $this->registerMapping("end_midlands", BiomeIds::THE_END); + $this->registerMapping("eroded_badlands", BiomeIds::MESA_BRYCE); + $this->registerMapping("flower_forest", BiomeIds::FLOWER_FOREST); + $this->registerMapping("forest", BiomeIds::FOREST); + $this->registerMapping("frozen_ocean", BiomeIds::FROZEN_OCEAN); + $this->registerMapping("frozen_peaks", BiomeIds::FROZEN_PEAKS); + $this->registerMapping("frozen_river", BiomeIds::FROZEN_RIVER); + $this->registerMapping("grove", BiomeIds::GROVE); + $this->registerMapping("ice_spikes", BiomeIds::ICE_PLAINS_SPIKES); + $this->registerMapping("jagged_peaks", BiomeIds::JAGGED_PEAKS); + $this->registerMapping("jungle", BiomeIds::JUNGLE); + $this->registerMapping("lukewarm_ocean", BiomeIds::LUKEWARM_OCEAN); + $this->registerMapping("lush_caves", BiomeIds::LUSH_CAVES); + $this->registerMapping("mangrove_swamp", BiomeIds::MANGROVE_SWAMP); + $this->registerMapping("meadow", BiomeIds::MEADOW); + $this->registerMapping("mushroom_fields", BiomeIds::MUSHROOM_ISLAND); + $this->registerMapping("nether_wastes", BiomeIds::HELL); + $this->registerMapping("ocean", BiomeIds::OCEAN); + $this->registerMapping("ocean", BiomeIds::OCEAN); + $this->registerMapping("old_growth_birch_forest", BiomeIds::BIRCH_FOREST_MUTATED); + $this->registerMapping("old_growth_pine_taiga", BiomeIds::MEGA_TAIGA); + $this->registerMapping("old_growth_spruce_taiga", BiomeIds::REDWOOD_TAIGA_MUTATED); + $this->registerMapping("plains", BiomeIds::PLAINS); + $this->registerMapping("river", BiomeIds::RIVER); + $this->registerMapping("savanna", BiomeIds::SAVANNA); + $this->registerMapping("savanna_plateau", BiomeIds::SAVANNA_PLATEAU); + $this->registerMapping("small_end_islands", BiomeIds::THE_END); + $this->registerMapping("snowy_beach", BiomeIds::COLD_BEACH); + $this->registerMapping("snowy_plains", BiomeIds::ICE_PLAINS); + $this->registerMapping("snowy_slopes", BiomeIds::SNOWY_SLOPES); + $this->registerMapping("snowy_taiga", BiomeIds::COLD_TAIGA); + $this->registerMapping("soul_sand_valley", BiomeIds::SOULSAND_VALLEY); + $this->registerMapping("sparse_jungle", BiomeIds::JUNGLE_EDGE); + $this->registerMapping("stony_peaks", BiomeIds::STONY_PEAKS); + $this->registerMapping("stony_shore", BiomeIds::STONE_BEACH); + $this->registerMapping("sunflower_plains", BiomeIds::SUNFLOWER_PLAINS); + $this->registerMapping("swamp", BiomeIds::SWAMPLAND); + $this->registerMapping("taiga", BiomeIds::TAIGA); + $this->registerMapping("the_end", BiomeIds::THE_END); + $this->registerMapping("the_void", BiomeIds::THE_END); + $this->registerMapping("warm_ocean", BiomeIds::WARM_OCEAN); + $this->registerMapping("warped_forest", BiomeIds::WARPED_FOREST); + $this->registerMapping("windswept_forest", BiomeIds::EXTREME_HILLS_PLUS_TREES); + $this->registerMapping("windswept_gravelly_hills", BiomeIds::EXTREME_HILLS_MUTATED); + $this->registerMapping("windswept_hills", BiomeIds::EXTREME_HILLS); + $this->registerMapping("windswept_savanna", BiomeIds::SAVANNA_MUTATED); + $this->registerMapping("windswept_savanna_plateau", BiomeIds::SAVANNA_PLATEAU_MUTATED); + $this->registerMapping("wooded_badlands", BiomeIds::MESA_PLATEAU_STONE); + } + + public function registerMapping(string $identifier, int $biomeId, bool $overwrite = false): bool { + if (isset($this->mappings[$identifier]) and !$overwrite) return false; + $this->mappings[$identifier] = $biomeId; + return true; + } + + public function getBiomeNames(): array { + return array_keys($this->mappings); + } + + public function get(string $identifier, bool $throwOnMissing = true): ?int { + return $this->mappings[$identifier] ?? ($throwOnMissing ? throw new InvalidArgumentException("Failed to find the biome " . $identifier) : null); + } +} \ No newline at end of file diff --git a/src/JavaGen/helper/biome/BiomePalette.php b/src/JavaGen/helper/biome/BiomePalette.php new file mode 100644 index 0000000..132a5ac --- /dev/null +++ b/src/JavaGen/helper/biome/BiomePalette.php @@ -0,0 +1,21 @@ +biomeIds[] = BiomeIdentifierRegistry::getInstance()->get($identifier); + } + } + + public function get(int $index): int { + return $this->biomeIds[$index] ?? $this->defaultBiomeId; + } +} \ No newline at end of file diff --git a/src/JavaGen/helper/block/BlockIdentifierRegistry.php b/src/JavaGen/helper/block/BlockIdentifierRegistry.php new file mode 100644 index 0000000..ecb62b7 --- /dev/null +++ b/src/JavaGen/helper/block/BlockIdentifierRegistry.php @@ -0,0 +1,80 @@ + $mappings + */ + private array $mappings; + + /** + * @var Closure[] $defaultBlocks + * @phpstan-var array $defaultBlocks + */ + private array $defaultBlocks = []; + + public function __construct() { + $this->registerDefaultMappings(); + } + + private function registerDefaultMappings(): void { + $this->registerMapping("minecraft:cave_air", BlockTypeNames::AIR); + $this->registerMapping("minecraft:deepslate_lapis_ore", BlockTypeNames::DEEPSLATE_LAPIS_ORE); + $this->registerMapping("minecraft:kelp", BlockTypeNames::WATER); + $this->registerMapping("minecraft:kelp_plant", BlockTypeNames::WATER); + $this->registerMapping("minecraft:magma_block", BlockTypeNames::MAGMA); + $this->registerMapping("minecraft:short_grass", BlockTypeNames::TALLGRASS); + $this->registerMapping("minecraft:seagrass", BlockTypeNames::WATER); + $this->registerMapping("minecraft:tall_seagrass", BlockTypeNames::WATER); + // these blocks simply don't exist in pocketmine: + $this->registerMapping("minecraft:bamboo_block", BlockTypeNames::AIR, fn() => VanillaBlocks::AIR()); + $this->registerMapping("minecraft:stripped_bamboo_block", BlockTypeNames::AIR, fn() => VanillaBlocks::AIR()); + $this->registerMapping("minecraft:bamboo_mosaic", BlockTypeNames::OAK_PLANKS); + $this->registerMapping("minecraft:bamboo_planks", BlockTypeNames::OAK_PLANKS); + $this->registerMapping("minecraft:bamboo_stairs", BlockTypeNames::OAK_STAIRS); + $this->registerMapping("minecraft:cherry_sapling", BlockTypeNames::AIR, fn() => VanillaBlocks::AIR()); + $this->registerMapping("minecraft:dispenser", BlockTypeNames::AIR, fn() => VanillaBlocks::AIR()); + $this->registerMapping("minecraft:mangrove_propagule", BlockTypeNames::AIR, fn() => VanillaBlocks::AIR()); + $this->registerMapping("minecraft:suspicious_sand", BlockTypeNames::SAND, fn() => VanillaBlocks::SAND()); + $this->registerMapping("minecraft:suspicious_gravel", BlockTypeNames::GRAVEL, fn() => VanillaBlocks::GRAVEL()); + $this->registerMapping("minecraft:chest", BlockTypeNames::CHEST, function (array $states): Chest { + return VanillaBlocks::CHEST(); // todo + }); + } + + /** + * @phpstan-param Closure(array): Block|null $stateMapper + */ + public function registerMapping(string $missingIdentifier, string $realIdentifier, ?Closure $stateMapper = null, bool $overwrite = false): bool { + if ((isset($this->mappings[$missingIdentifier]) or isset($this->defaultBlocks[$missingIdentifier])) and !$overwrite) return false; + $this->mappings[$missingIdentifier] = $realIdentifier; + if ($stateMapper === null) { + unset($this->defaultBlocks[$missingIdentifier]); + } else { + $this->defaultBlocks[$missingIdentifier] = $stateMapper; + } + return true; + } + + public function map(string $identifier): string { + return $this->mappings[$identifier] ?? $identifier; + } + + public function getBlock(string $identifier, array $states): ?Block { + if (!isset($this->defaultBlocks[$identifier])) return null; + return ($this->defaultBlocks[$identifier])($states); + } +} \ No newline at end of file diff --git a/src/JavaGen/helper/block/BlockPalette.php b/src/JavaGen/helper/block/BlockPalette.php new file mode 100644 index 0000000..793d977 --- /dev/null +++ b/src/JavaGen/helper/block/BlockPalette.php @@ -0,0 +1,37 @@ +stateAir = VanillaBlocks::AIR()->getStateId(); + $this->parseMap($rawMap); + } + + public function getBlockFromIndex(int $index): int { + return $this->map[$index] ?? $this->stateAir; + } + + private function parseMap(array $map): void { + foreach ($map as $i => $blockData) { + $block = JavaToBedrockBlockData::getInstance()->javaToBedrockBlock($blockData); + $this->map[$i] = $block->getStateId(); + } + $this->rawBlockData = $map; + } + + public function getBlockData(int $index): string { + return $this->rawBlockData[$index]; + } +} \ No newline at end of file diff --git a/src/JavaGen/helper/block/JavaToBedrockBlockData.php b/src/JavaGen/helper/block/JavaToBedrockBlockData.php new file mode 100644 index 0000000..8af8cc3 --- /dev/null +++ b/src/JavaGen/helper/block/JavaToBedrockBlockData.php @@ -0,0 +1,70 @@ +mappings = array_map(function(array $json): Block { + $identifier = BlockIdentifierRegistry::getInstance()->map($json["bedrock_identifier"]); + $states = $this->jsonToNbt($json["bedrock_states"] ?? []); + + $block = BlockIdentifierRegistry::getInstance()->getBlock($json["bedrock_identifier"], $json["bedrock_states"] ?? []); + if ($block !== null) return $block; + + $data = new BlockStateData($identifier, $states, 0); + + try { + return GlobalBlockStateHandlers::getDeserializer()->deserializeBlock($data); + } catch (BlockStateDeserializeException) { + $result = StringToItemParser::getInstance()->parse($identifier)?->getBlock(); + return $result ?? VanillaBlocks::AIR(); + } + }, json_decode(file_get_contents(DataRegistry::MAPPINGS_FILE), true)); + } + + public function javaToBedrockBlock(string $identifier): Block { + return $this->mappings[$identifier] ?? throw new InvalidArgumentException("Block \"" . $identifier . "\" is not registered in the mappings"); + } + + private function jsonToNbt(array $json): array { + $tags = []; + foreach($json as $name => $value) { + $tags[$name] = match(true) { + is_float($value) => new FloatTag($value), + is_bool($value) => new ByteTag((int) $value), + is_int($value) => new IntTag($value), + default => new StringTag($value) + }; + } + return $tags; + } +} \ No newline at end of file diff --git a/src/JavaGen/helper/number/ExactNumber.php b/src/JavaGen/helper/number/ExactNumber.php new file mode 100644 index 0000000..35dc1ea --- /dev/null +++ b/src/JavaGen/helper/number/ExactNumber.php @@ -0,0 +1,14 @@ +number; + } +} \ No newline at end of file diff --git a/src/JavaGen/helper/number/Number.php b/src/JavaGen/helper/number/Number.php new file mode 100644 index 0000000..75ce1e0 --- /dev/null +++ b/src/JavaGen/helper/number/Number.php @@ -0,0 +1,27 @@ +min) || is_float($this->max)) { + $factor = $this->max * (1 << 28); + return mt_rand((int) ($this->min * $factor), (int) ($this->max * $factor)) / $factor; + } + return mt_rand($this->min, $this->max); + } +} \ No newline at end of file diff --git a/src/JavaGen/loot/LootPool.php b/src/JavaGen/loot/LootPool.php new file mode 100644 index 0000000..7680c8f --- /dev/null +++ b/src/JavaGen/loot/LootPool.php @@ -0,0 +1,61 @@ +itemPool[] = $item; + return $this; + } + + public static function fromSize(Number $size): LootPool { + return new LootPool($size); + } + + public function generateItems(Random $random): array { + $size = $this->size->getNumber(); + $fullWeight = $this->getFullWeight(); + /** @var Item[] $items */ + $items = []; + + for ($i = 0; $i < $size; $i++) { + while (true) { + foreach ($this->itemPool as $item) { + $item = clone $item; + $chance = ($item->getWeight() / $fullWeight) * 10000; + + if ($random->nextBoundedInt(10000) < $chance) { + $selectedItem = clone $item; + $items[] = $selectedItem->runSelection($random); + break 2; + } + } + } + } + return $items; + } + + public function getFullWeight(): int { + if ($this->cachedFullWeight !== null) return $this->cachedFullWeight; + $weightSum = 0; + foreach ($this->itemPool as $item) { + $weightSum += $item->getWeight(); + } + return $this->cachedFullWeight = $weightSum; + } +} \ No newline at end of file diff --git a/src/JavaGen/loot/LootTable.php b/src/JavaGen/loot/LootTable.php new file mode 100644 index 0000000..047ae76 --- /dev/null +++ b/src/JavaGen/loot/LootTable.php @@ -0,0 +1,55 @@ +pools = $pools; + } + + /** + * @return Item[] + */ + public function generateItems(Random $random): array { + $items = []; + foreach ($this->pools as $pool) { + foreach ($pool->generateItems($random) as $item) { + $items[] = $item; + } + } + return $items; + } + + public function placeItemsInChestGrid(Random $random): array { + $unsortedItems = $this->generateItems($random); + foreach ($unsortedItems as $item) { + if ($item->getCount() > 5) { + $j = 3 + $random->nextBoundedInt($item->getCount() - 5); + for ($i = 0; $i < $j; $i++) { + if ($item->getCount() > 2) { + $unsortedItems[] = $item->pop(); + } + } + } + } + $items = []; + while (count($unsortedItems) and count($items) < 18) { + $selectedIndex = $random->nextBoundedInt(27); + if (isset($items[$selectedIndex])) continue; + + $items[$selectedIndex] = array_shift($unsortedItems); + } + return $items; + } +} \ No newline at end of file diff --git a/src/JavaGen/loot/LootTableIds.php b/src/JavaGen/loot/LootTableIds.php new file mode 100644 index 0000000..a371e1c --- /dev/null +++ b/src/JavaGen/loot/LootTableIds.php @@ -0,0 +1,52 @@ + $lootTables + */ + private array $lootTables = []; + + public function __construct() { + $this->loadTables(); + } + + public function getTableByName(string $name): ?LootTable { + return $this->lootTables[$this->parseName($name)] ?? null; + } + + public function registerLootTable(string $name, LootTable $lootTable): void { + $this->lootTables[$this->parseName($name)] = $lootTable; + } + + public function getLootTables(): array { + return $this->lootTables; + } + + private function parseName(string $name): string { + return str_replace("_", "", strtolower($name)); + } + + private function loadTables(string $folder = DataRegistry::LOOT_TABLES, string $prefix = "chests/"): void { + foreach (array_diff(scandir($folder), [".", ".."]) as $file) { + if (is_dir($folder . $file)) { + $this->loadTables($folder . $file . DIRECTORY_SEPARATOR, $prefix . $file . "/"); + continue; + } + if (!str_ends_with($file, ".json")) continue; + $json = json_decode(file_get_contents($folder . $file), true); + $this->loadTable($prefix . basename($file, ".json"), $json); + } + } + + private function loadTable(string $name, array $jsonData): void { + $pools = []; + foreach ($jsonData["pools"] as $poolData) { + $pool = LootPool::fromSize(Number::fromJson($poolData["rolls"])); + + foreach ($poolData["entries"] as $entry) { + if ($entry["type"] !== "item" and $entry["type"] !== "empty") continue; + + $item = ($entry["type"] === "empty" ? VanillaItems::AIR() : StringToItemParser::getInstance()->parse($entry["name"])); + if ($item === null) continue; + + $lootItem = LootItem::fromItem($item); + if (isset($entry["weight"])) $lootItem->setWeight($entry["weight"]); + + foreach ($entry["functions"] ?? [] as $function) { + $parsedFunction = self::findFunction($function["function"], $function); + if ($parsedFunction === null) { + continue; + } + $lootItem->apply($parsedFunction); + } + $pool->addItem($lootItem); + } + $pools[] = $pool; + } + + $this->registerLootTable($name, new LootTable(...$pools)); + } + + private static function findFunction(string $functionName, array $json): ?LootItemFunction { + return match ($functionName) { + "minecraft:set_count", "set_count" => SetCountFunction::fromJson($json), + "minecraft:set_damage", "set_damage" => SetDamageFunction::fromJson($json), + "minecraft:enchant_randomly", "enchant_randomly" => EnchantItemFunction::fromJson($json), + "minecraft:enchant_with_levels", "enchant_with_levels" => EnchantItemFunction::fromJson($json), + "minecraft:set_data", "set_data" => SetDataFunction::fromJson($json), + "minecraft:specific_enchants", "specific_enchants" => SpecificEnchantFunction::fromJson($json), + default => null + }; + } +} \ No newline at end of file diff --git a/src/JavaGen/loot/item/EnchantItemFunction.php b/src/JavaGen/loot/item/EnchantItemFunction.php new file mode 100644 index 0000000..d8306dd --- /dev/null +++ b/src/JavaGen/loot/item/EnchantItemFunction.php @@ -0,0 +1,53 @@ +item; + + if ($this->levels === null) { + $enchants = AvailableEnchantmentRegistry::getInstance()->getAllEnchantmentsForItem($item); + if (count($enchants) > 0) { + $enchant = $enchants[array_rand($enchants)]; + + $item->addEnchantment(new EnchantmentInstance($enchant, mt_rand(1, $enchant->getMaxLevel()))); + } + } else { + $method = (new ReflectionClass(EnchantingHelper::class))->getMethod("createOption"); + /** @var EnchantingOption $option */ + $option = $method->getClosure()($random, $item, (int) $this->levels->getNumber()); + + foreach ($option->getEnchantments() as $enchantment) { + $item->addEnchantment($enchantment); + } + } + } + + public static function fromJson(array $data): static { + if (isset($data["levels"])) { + return new EnchantItemFunction(Number::fromJson($data["levels"]), $data["treasure"]); + } + return new EnchantItemFunction(); + } +} \ No newline at end of file diff --git a/src/JavaGen/loot/item/LootItem.php b/src/JavaGen/loot/item/LootItem.php new file mode 100644 index 0000000..7913910 --- /dev/null +++ b/src/JavaGen/loot/item/LootItem.php @@ -0,0 +1,49 @@ +weight = $weight; + return $this; + } + + public function getWeight(): int|float { + return $this->weight; + } + + public function apply(LootItemFunction $function): LootItem { + $this->onSelectFunctions[] = $function; + return $this; + } + + public function runSelection(Random $random): Item { + $i = new LootItem(clone $this->item); + foreach ($this->onSelectFunctions as $function) { + $function->applyOn($i, $random); + } + return $i->item; + } + + public static function fromItem(Item $item): LootItem { + return new LootItem($item); + } + + public static function empty(): LootItem { + return LootItem::fromItem(VanillaItems::AIR()); + } +} \ No newline at end of file diff --git a/src/JavaGen/loot/item/LootItemFunction.php b/src/JavaGen/loot/item/LootItemFunction.php new file mode 100644 index 0000000..4cd0c2b --- /dev/null +++ b/src/JavaGen/loot/item/LootItemFunction.php @@ -0,0 +1,14 @@ +count->getNumber(); + $item->item->setCount(min($item->item->getMaxStackSize(), (int) $num)); + } + + public static function fromJson(array $data): static { + return new SetCountFunction(Number::fromJson($data["count"])); + } +} \ No newline at end of file diff --git a/src/JavaGen/loot/item/SetDamageFunction.php b/src/JavaGen/loot/item/SetDamageFunction.php new file mode 100644 index 0000000..fc02e1b --- /dev/null +++ b/src/JavaGen/loot/item/SetDamageFunction.php @@ -0,0 +1,30 @@ +damage->getNumber(); + if ($num > 1) { + $item->setDamage((int) $num); + } else { + $item->setDamage($num * $item->getMaxDurability()); + } + } + + public static function fromJson(array $data): static { + return new SetDamageFunction(Number::fromJson($data["damage"])); + } +} \ No newline at end of file diff --git a/src/JavaGen/loot/item/SetDataFunction.php b/src/JavaGen/loot/item/SetDataFunction.php new file mode 100644 index 0000000..b6fbb71 --- /dev/null +++ b/src/JavaGen/loot/item/SetDataFunction.php @@ -0,0 +1,29 @@ +serializeType($item->item); + + $resultingName = LegacyItemMetaIdMap::getInstance()->getMeta($data->getName(), $this->data); + if ($resultingItem = StringToItemParser::getInstance()->parse($resultingName)) { + $item->item = $resultingItem; + } + } + + public static function fromJson(array $data): static { + return new SetDataFunction((int) $data["data"]); + } +} \ No newline at end of file diff --git a/src/JavaGen/loot/item/SpecificEnchantFunction.php b/src/JavaGen/loot/item/SpecificEnchantFunction.php new file mode 100644 index 0000000..f865f00 --- /dev/null +++ b/src/JavaGen/loot/item/SpecificEnchantFunction.php @@ -0,0 +1,35 @@ +enchants as $enchantData) { + $enchants = VanillaEnchantments::getAll(); + if (!isset($enchants[strtoupper($enchantData["id"] ?? "")])) return; + + $enchantment = $enchants[strtoupper($enchantData["id"])]; + $num = new RandomNumber($z = $enchantData["level"][0], $enchantData["level"][1] ?? $z); + $instance = new EnchantmentInstance($enchantment, min($num->getNumber(), $enchantment->getMaxLevel())); + + $item->item->addEnchantment($instance); + } + } + + public static function fromJson(array $data): static { + return new SpecificEnchantFunction($data["enchants"]); + } +} \ No newline at end of file diff --git a/src/JavaGen/stream/JavaRequests.php b/src/JavaGen/stream/JavaRequests.php new file mode 100644 index 0000000..9567d0a --- /dev/null +++ b/src/JavaGen/stream/JavaRequests.php @@ -0,0 +1,51 @@ +value); + $stream = new BinaryStream($fullResponse); + } + + public static function findNearestBiome(Position $position, string $biomeName): ?Vector3 { + $dimension = GeneratorNames::toDimension($position->getWorld()); + return self::findNearestObject("biome", $dimension, $position, $biomeName); + } + + public static function findNearestStructure(Position $position, string $structureName): ?Vector3 { + $dimension = GeneratorNames::toDimension($position->getWorld()); + return self::findNearestObject("structure", $dimension, $position, $structureName); + } + + public static function findNearestObject(string $type, Dimension $dimension, Vector3 $position, string $objectName): ?Vector3 { + $position = $position->floor(); + $fullResponse = self::request("http://localhost:8000/locate?category=$type&type=$objectName&x=" . $position->x . "&y=" . $position->y . "&z=" . $position->z . "&dimension=" . $dimension->value); + + $json = json_decode($fullResponse, true); + if ($json === null or !isset($json["x"]) or !isset($json["y"]) or !isset($json["z"])) { + return null; + } + return new Vector3($json["x"], $json["y"], $json["z"]); + } + + private static function request(string $url): string { + $result = Internet::getURL($url, 3); + if ($result === null) { + throw new RuntimeException("Connection to the upstream Java Server lost! Check the status of the server"); + } + return $result->getBody(); + } +} \ No newline at end of file diff --git a/src/JavaGen/structure/Structure.php b/src/JavaGen/structure/Structure.php new file mode 100644 index 0000000..0201cf0 --- /dev/null +++ b/src/JavaGen/structure/Structure.php @@ -0,0 +1,37 @@ +type; + } + + public function getBoundingBox(): AxisAlignedBB { + return $this->boundingBox; + } + + public static function parseBoundingBox(string $boundingBox): ?AxisAlignedBB { + preg_match(self::PATTERN_BOUNDING_BOX, $boundingBox, $matches); + + if (count($matches) !== 7) { + throw new InvalidArgumentException("Malformed bounding box: " . $boundingBox); + } + return new AxisAlignedBB(...array_map("intval", array_slice($matches, 1))); + } +} \ No newline at end of file diff --git a/src/JavaGen/structure/StructureCategory.php b/src/JavaGen/structure/StructureCategory.php new file mode 100644 index 0000000..87cf88f --- /dev/null +++ b/src/JavaGen/structure/StructureCategory.php @@ -0,0 +1,45 @@ + [ + StructureType::RUINED_PORTAL, + StructureType::RUINED_PORTAL_DESERT, + StructureType::RUINED_PORTAL_JUNGLE, + StructureType::RUINED_PORTAL_MOUNTAIN, + StructureType::RUINED_PORTAL_NETHER, + StructureType::RUINED_PORTAL_OCEAN, + StructureType::RUINED_PORTAL_SWAMP, + ], + self::MINESHAFT => [ + StructureType::MINESHAFT, + StructureType::MINESHAFT_MESA + ], + self::PYRAMID => [ + StructureType::DESERT_PYRAMID, + StructureType::JUNGLE_PYRAMID, + ], + self::VILLAGE => [ + StructureType::VILLAGE_DESERT, + StructureType::VILLAGE_PLAINS, + StructureType::VILLAGE_SAVANNA, + StructureType::VILLAGE_SNOWY, + StructureType::VILLAGE_TAIGA, + ] + }; + } +} \ No newline at end of file diff --git a/src/JavaGen/structure/StructureManager.php b/src/JavaGen/structure/StructureManager.php new file mode 100644 index 0000000..05159e9 --- /dev/null +++ b/src/JavaGen/structure/StructureManager.php @@ -0,0 +1,70 @@ +> $registeredStructures + */ + private array $registeredStructures = []; + + public function __construct() { + foreach (Dimension::cases() as $dimension) { + foreach (ChunkDataStorage::getInstance()->getStructuresInDimension($dimension) as $structure) { + $this->registeredStructures[$dimension->value] = $structure; + } + } + } + + public function __destruct() { + foreach ($this->registeredStructures as $dimension => $structures) { + foreach ($structures as $structure) { + ChunkDataStorage::getInstance()->storeStructure($structure, Dimension::from($dimension)); + } + } + } + + public function putStructure(Structure $structure): void { + $this->registeredStructures[$structure->getType()->getDimension()->value][] = $structure; + } + + public function getStructuresAt(Position $position): array { + $dimension = GeneratorNames::toDimension($position->getWorld()); + + if ($dimension === null) return []; + $structures = []; + foreach ($this->registeredStructures[$dimension->value] ?? [] as $structure) { + if ($structure->getBoundingBox()->isVectorInside($position)) { + $structures[] = $structure; + } + } + return $structures; + } + + public function getStructuresInChunk(World $world, int $chunkX, int $chunkZ): array { + $aabb = new AxisAlignedBB($chunkX << 4, $world->getMinY(), $chunkZ << 4, ($chunkX << 4) + 15, $world->getMaxY(), ($chunkZ << 4) + 15); + $dimension = GeneratorNames::toDimension($world); + + if ($dimension === null) return []; + $structures = []; + foreach ($this->registeredStructures[$dimension->value] ?? [] as $structure) { + if ($structure->getBoundingBox()->intersectsWith($aabb)) { + $structures[] = $structure; + } + } + return $structures; + } +} \ No newline at end of file diff --git a/src/JavaGen/structure/StructureType.php b/src/JavaGen/structure/StructureType.php new file mode 100644 index 0000000..c2b92ab --- /dev/null +++ b/src/JavaGen/structure/StructureType.php @@ -0,0 +1,91 @@ +getChildren(), true); + } + + public function getDimension(): Dimension { + return match($this) { + self::FORTRESS, self::NETHER_FOSSIL, self::RUINED_PORTAL_NETHER, self::BASTION_REMNANT => Dimension::NETHER, + self::END_CITY => Dimension::END, + default => Dimension::OVERWORLD + }; + } +} \ No newline at end of file diff --git a/src/JavaGen/tile/JavaTile.php b/src/JavaGen/tile/JavaTile.php new file mode 100644 index 0000000..4b6a40c --- /dev/null +++ b/src/JavaGen/tile/JavaTile.php @@ -0,0 +1,39 @@ + $additionalData */ + private array $additionalData; + + private Vector3 $position; + + private string $id; + + public function __construct(array $data) { + if (!isset($data["id"]) or !isset($data["x"]) or !isset($data["y"]) or !isset($data["z"])) { + throw new InvalidArgumentException("Tile does not contain important information"); + } + $this->position = new Vector3($data["x"], $data["y"], $data["z"]); + $this->id = $data["id"]; + $this->additionalData = $data; + } + + public function getId(): string { + return $this->id; + } + + public function getPosition(): Vector3 { + return $this->position; + } + + public function getAdditionalData(): array { + return $this->additionalData; + } +} \ No newline at end of file diff --git a/src/JavaGen/tile/JavaTileMappings.php b/src/JavaGen/tile/JavaTileMappings.php new file mode 100644 index 0000000..2787fda --- /dev/null +++ b/src/JavaGen/tile/JavaTileMappings.php @@ -0,0 +1,83 @@ + $mappings + */ + private array $mappings = []; + + public function __construct() { + $this->registerDefaultMappings(); + } + + private function registerDefaultMappings(): void { + $this->registerMapping(BlockTypeNames::CHEST, function (JavaTile $tile, World $world, Chunk $chunk): void { + if (!isset($tile->getAdditionalData()["LootTable"])) { + return; + } + $name = str_replace("minecraft:", "", $tile->getAdditionalData()["LootTable"]); + + if (($lootTable = LootTableRegistry::getInstance()->getTableByName($name)) !== null) { + $tileChest = new Chest($world, $tile->getPosition()); + $tileChest->getInventory()->setContents($lootTable->placeItemsInChestGrid(new Random($tile->getAdditionalData()["LootTableSeed"] ?? mt_rand()))); + $chunk->addTile($tileChest); + $chunk->setTerrainDirty(); + } else { + throw new InvalidArgumentException("LootTable " . $name . " does not exist!"); + } + }); + $this->registerMapping(BlockTypeNames::ENDER_CHEST, function (JavaTile $tile, World $world, Chunk $chunk): void { + $tileBed = new EnderChest($world, $tile->getPosition()); + $chunk->addTile($tileBed); + $chunk->setTerrainDirty(); + }); + $this->registerMapping(BlockTypeNames::BED, function (JavaTile $tile, World $world, Chunk $chunk): void { + $tileBed = new Bed($world, $tile->getPosition()); + $chunk->addTile($tileBed); + $chunk->setTerrainDirty(); + }); + $this->registerMapping(BlockTypeNames::BREWING_STAND, function (JavaTile $tile, World $world, Chunk $chunk): void { + $tileBed = new BrewingStand($world, $tile->getPosition()); // todo: inventory items + $chunk->addTile($tileBed); + $chunk->setTerrainDirty(); + }); + } + + /** + * @phpstan-param Closure(JavaTile, World): void $closure + */ + public function registerMapping(string $tileId, Closure $closure, bool $overwrite = false): bool { + if (isset($this->mappings[$tileId]) and !$overwrite) return false; + $this->mappings[$tileId] = $closure; + return true; + } + + /** + * @phpstan-return Closure(JavaTile, World): void|null + */ + public function findMapping(string $tileId): ?Closure { + return $this->mappings[$tileId] ?? null; + } +} \ No newline at end of file diff --git a/text b/text new file mode 100644 index 0000000..84920a9 --- /dev/null +++ b/text @@ -0,0 +1,30 @@ +string(7) "WE HERE" +string(7) "WE HERE" +string(8) "NOT HERE" +string(19) "gen start for 19;13" +string(7) "WE HERE" +string(19) "gen start for 13;19" +string(19) "gen start for 19;19" +string(7) "WE HERE" +string(7) "WE HERE" +string(8) "NOT HERE" +string(8) "NOT HERE" +string(7) "WE HERE" +string(7) "WE HERE" +string(7) "WE HERE" +string(7) "WE HERE" +string(22) "gen complete for 16;16" +string(22) "gen complete for 13;13" +string(19) "gen start for 15;15" +string(19) "gen start for 12;12" +string(22) "gen complete for 19;16" +string(19) "gen start for 18;15" +string(7) "WE HERE" +string(7) "WE HERE" +string(8) "NOT HERE" +string(7) "WE HERE" +string(19) "gen start for 10;16" +string(7) "WE HERE" +string(22) "gen complete for 15;15" +string(19) "gen start for 15;16" +string(7) "WE HERE" \ No newline at end of file